2019-04-26 13:51:58 +02:00
|
|
|
#!/usr/bin/env python3
|
2019-04-26 13:16:15 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-04-26 13:51:58 +02:00
|
|
|
import numpy, pandas
|
|
|
|
|
|
|
|
print ('Hello, world!')
|
2019-04-26 14:02:09 +02:00
|
|
|
|
2019-04-26 14:03:26 +02:00
|
|
|
input_data = pandas.read_csv('ASR-eval/wikiniews_results.tsv', error_bad_lines=False, sep='\t', header=0)
|
2019-04-26 14:02:09 +02:00
|
|
|
|
|
|
|
print(input_data[0])
|
|
|
|
# numpy.savetxt('zadanie3/sentences.tsv', input_data[1], '%s')
|