add test out.tsv
This commit is contained in:
parent
8dc7739563
commit
a3c8cfb2d4
@ -25,3 +25,9 @@ predictions = classifier.predict(counts2)
|
|||||||
|
|
||||||
predictions.tofile("./dev-0/out.tsv", sep='\n')
|
predictions.tofile("./dev-0/out.tsv", sep='\n')
|
||||||
|
|
||||||
|
tsv_read_test_in = pd.read_table('./test-A/in.tsv', error_bad_lines=False, header= None)
|
||||||
|
X_test= tsv_read_test_in[0].values
|
||||||
|
|
||||||
|
counts3 = vectorizer.transform(X_test)
|
||||||
|
predictions_test_A = classifier.predict(counts3)
|
||||||
|
predictions_test_A.tofile('./test-A/out.tsv', sep='\n')
|
5445
test-A/out.tsv
Normal file
5445
test-A/out.tsv
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user