12 lines
291 B
Python
12 lines
291 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import numpy, pandas
|
|
|
|
print('Hello, world!')
|
|
|
|
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') |