sshimo commited on
Commit
fff0c39
·
verified ·
1 Parent(s): 9b0672e

Upload script.py

Browse files
Files changed (1) hide show
  1. script.py +6 -0
script.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ test_df = pd.read_csv("/tmp/data/test.csv")
4
+ test_df['pred'] = 1
5
+
6
+ test_df.to_csv('submission.csv', index=False)