10 lines
267 B
Python
10 lines
267 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import numpy, pandas
|
|
|
|
input_data = pandas.read_csv('ASR-eval/wikiniews_results.tsv', error_bad_lines=False, sep='\t', header=None)
|
|
|
|
sentences = input_data[1]
|
|
|
|
numpy.savetxt('zadanie3/sentences.tsv', input_data[1], '%s') |