Noah Shinn commited on
Commit
4d6c989
·
1 Parent(s): 178f7db

train test split

Browse files
data/{pairs.parquet → test-pairs.parquet} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:905cdaab576fa2bb740aafe82dd324232d8ab050b47f850563f1287bef117d2e
3
- size 783276
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8576bc04c1600a77cac24b5ddbdea7bd8ddee89140fc824b88d49468acf024d5
3
+ size 88859
data/train-pairs.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d0733364c22c3ecc248aa3385a8f859477774029f6f2d3e394453808620da49
3
+ size 695403
test.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ df = pd.read_parquet('data/train-pairs.parquet')
4
+ print(df.head())
5
+ print(df.shape)
6
+
7
+ df = pd.read_parquet('data/test-pairs.parquet')
8
+ print(df.head())
9
+ print(df.shape)