11 lines
310 B
Python
11 lines
310 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', index_col=False, error_bad_lines=False, sep='\t', header=0)
|
|
|
|
print(input_data.columns[1])
|
|
# numpy.savetxt('zadanie3/sentences.tsv', input_data[1], '%s') |