Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
sshimo
/
compe-sandbox
like
0
Model card
Files
Files and versions
Community
sshimo
commited on
Feb 8, 2024
Commit
fff0c39
·
verified
·
1 Parent(s):
9b0672e
Upload script.py
Browse files
Files changed (1)
hide
show
script.py
+6
-0
script.py
ADDED
Viewed
@@ -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)