Datasets:

Modalities:
Image
Text
Formats:
parquet
Languages:
English
Libraries:
Datasets
Dask
License:
Brett Renfer commited on
Commit
5d110fb
1 Parent(s): 2e05499

Fixes for broken rows; full dataset now

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. MetObjects.csv.gz +3 -0
  2. add_images.py +44 -2
  3. clean.py +4 -3
  4. default/train/00000.parquet +2 -2
  5. default/train/00001.parquet +2 -2
  6. default/train/00002.parquet +2 -2
  7. default/train/00003.parquet +2 -2
  8. default/train/00004.parquet +2 -2
  9. default/train/00005.parquet +2 -2
  10. default/train/00006.parquet +2 -2
  11. default/train/00007.parquet +2 -2
  12. default/train/00008.parquet +2 -2
  13. default/train/00009.parquet +2 -2
  14. default/train/00010.parquet +2 -2
  15. default/train/00011.parquet +2 -2
  16. default/train/00012.parquet +2 -2
  17. default/train/00013.parquet +2 -2
  18. default/train/00014.parquet +2 -2
  19. default/train/00015.parquet +2 -2
  20. default/train/00016.parquet +2 -2
  21. default/train/00017.parquet +2 -2
  22. default/train/00018.parquet +2 -2
  23. default/train/00019.parquet +2 -2
  24. default/train/00020.parquet +2 -2
  25. default/train/00021.parquet +2 -2
  26. default/train/00022.parquet +2 -2
  27. default/train/00023.parquet +2 -2
  28. default/train/00024.parquet +2 -2
  29. default/train/00025.parquet +2 -2
  30. default/train/00026.parquet +2 -2
  31. default/train/00027.parquet +2 -2
  32. default/train/00028.parquet +2 -2
  33. default/train/00029.parquet +2 -2
  34. default/train/00030.parquet +2 -2
  35. default/train/00031.parquet +2 -2
  36. default/train/00032.parquet +2 -2
  37. default/train/00033.parquet +2 -2
  38. default/train/00034.parquet +2 -2
  39. default/train/00035.parquet +2 -2
  40. default/train/00036.parquet +2 -2
  41. default/train/00037.parquet +2 -2
  42. default/train/00038.parquet +2 -2
  43. default/train/00039.parquet +2 -2
  44. default/train/00040.parquet +3 -0
  45. default/train/00041.parquet +3 -0
  46. default/train/00042.parquet +3 -0
  47. default/train/00043.parquet +3 -0
  48. default/train/00044.parquet +3 -0
  49. default/train/00045.parquet +3 -0
  50. default/train/00046.parquet +3 -0
MetObjects.csv.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8bc51debf928342dcb5e9d9ac22f72325cc3ae56e471a3cc332937f2f4b4498
3
+ size 37059735
add_images.py CHANGED
@@ -24,7 +24,7 @@ retries = Retry(total=3,
24
 
25
  s.mount('https://', HTTPAdapter(max_retries=retries))
26
 
27
- # Function to load and clean the CSV data
28
  def load_and_clean_csv(file_path):
29
  valid_rows = []
30
  invalid_rows = []
@@ -32,7 +32,7 @@ def load_and_clean_csv(file_path):
32
  index = 0
33
 
34
  # Read the gzip file line by line
35
- with gzip.open(file_path, 'rt') as f:
36
  reader = csv.reader(f)
37
  header = next(reader) # Read the header separately
38
  header.append("primaryImageSmall") # Add the new column to the header
@@ -57,9 +57,48 @@ def load_and_clean_csv(file_path):
57
  if index % 100 == 0:
58
  print("Fetched " + str(index) +" image URLs")
59
  else:
 
 
60
  invalid_rows.append(line)
61
  except Exception as e:
62
  print(e)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  invalid_rows.append(line)
64
 
65
  print(f"Found {len(invalid_rows)} invalid rows")
@@ -89,6 +128,9 @@ def main():
89
  input_file = 'metadata.csv.gz'
90
  output_file = 'metadata_images.csv.gz'
91
 
 
 
 
92
  # Load and clean the data
93
  valid_rows, invalid_rows = load_and_clean_csv(input_file)
94
 
 
24
 
25
  s.mount('https://', HTTPAdapter(max_retries=retries))
26
 
27
+ # Function to load and clean the CSV data & add images
28
  def load_and_clean_csv(file_path):
29
  valid_rows = []
30
  invalid_rows = []
 
32
  index = 0
33
 
34
  # Read the gzip file line by line
35
+ with gzip.open(file_path, 'rt', newline='\r\n', encoding='utf-8') as f:
36
  reader = csv.reader(f)
37
  header = next(reader) # Read the header separately
38
  header.append("primaryImageSmall") # Add the new column to the header
 
57
  if index % 100 == 0:
58
  print("Fetched " + str(index) +" image URLs")
59
  else:
60
+ print("Invalid: "+object_id)
61
+ print(row)
62
  invalid_rows.append(line)
63
  except Exception as e:
64
  print(e)
65
+ print("Invalid + error: "+object_id)
66
+ invalid_rows.append(line)
67
+
68
+ print(f"Found {len(invalid_rows)} invalid rows")
69
+ return valid_rows, invalid_rows
70
+
71
+ # Function to load and clean the CSV data & add images
72
+ def test_csv(file_path):
73
+ valid_rows = []
74
+ invalid_rows = []
75
+
76
+ index = 0
77
+
78
+ # Read the gzip file line by line
79
+ with gzip.open(file_path, 'rt', newline='\r\n', encoding='utf-8') as f:
80
+ reader = csv.reader(f)
81
+ header = next(reader) # Read the header separately
82
+ valid_rows.append(header)
83
+ expected_columns = len(header)
84
+
85
+ for line in f:
86
+ try:
87
+ # Try to parse the line
88
+ row = next(csv.reader([line]))
89
+ index = index + 1
90
+ if len(row) == expected_columns:
91
+ object_id = row[4]
92
+ print(object_id)
93
+ valid_rows.append(row)
94
+ else:
95
+ print("Invalid: "+object_id)
96
+ print(len(row), expected_columns)
97
+ print(row)
98
+ invalid_rows.append(line)
99
+ except Exception as e:
100
+ print(e)
101
+ print("Invalid + error: "+object_id)
102
  invalid_rows.append(line)
103
 
104
  print(f"Found {len(invalid_rows)} invalid rows")
 
128
  input_file = 'metadata.csv.gz'
129
  output_file = 'metadata_images.csv.gz'
130
 
131
+ # Test
132
+ # test_csv(input_file)
133
+
134
  # Load and clean the data
135
  valid_rows, invalid_rows = load_and_clean_csv(input_file)
136
 
clean.py CHANGED
@@ -3,7 +3,7 @@ import gzip
3
  import io
4
 
5
  def load_and_process_csv(input_file_path, output_file_path):
6
- with gzip.open(input_file_path, 'rt', newline='', encoding='utf-8') as infile:
7
  reader = csv.reader(infile)
8
  rows = list(reader)
9
 
@@ -11,8 +11,9 @@ def load_and_process_csv(input_file_path, output_file_path):
11
  for row in rows:
12
  processed_row = []
13
  for field in row:
14
- if field.startswith('"') and field.endswith('"'):
15
- field = field.replace('\n', ' ')
 
16
  processed_row.append(field)
17
  processed_rows.append(processed_row)
18
 
 
3
  import io
4
 
5
  def load_and_process_csv(input_file_path, output_file_path):
6
+ with gzip.open(input_file_path, 'rt', newline='\r\n', encoding='utf-8') as infile:
7
  reader = csv.reader(infile)
8
  rows = list(reader)
9
 
 
11
  for row in rows:
12
  processed_row = []
13
  for field in row:
14
+ # if field.startswith('"') and field.endswith('"'):
15
+ field = field.replace('\n', ' ')
16
+ field = field.replace('\r', ' ')
17
  processed_row.append(field)
18
  processed_rows.append(processed_row)
19
 
default/train/00000.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6ceb3b771a72b0b7beaf53b6f3497ff7424888041250fd669c83bc3d977c8951
3
- size 486818682
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8c4769442f89eb5cf92281a38b6037622072116166d3236827b86a8411c5a487
3
+ size 502687222
default/train/00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d718bf7864d078ca402b72fa21c4da0a547acb2ae318eb4e186716c5d58acfb7
3
- size 430489108
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70ab38ed582ea8f77583cc54e62205b0e2da2aaf346fb3d7080d1401e883e3ef
3
+ size 412648631
default/train/00002.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9de04d2f00b53043cbd635670c37d3a73f8d668a8a9c3fd1796f370a88a81ce1
3
- size 481729749
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4b0993110284d3cbae4fe754fed9963c00259704d62787e9bc387368e20a59fe
3
+ size 386308905
default/train/00003.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b8d90ff8ce4cbddead4083aad39ea424f9845a50b1517b60149e7cea24976359
3
- size 681255914
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc4a7b69392109a9f693e25fa187633e6a2ab2460c03da31ee9932a4d86e7fcb
3
+ size 774208852
default/train/00004.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:835324345a1aabd1258476bdda8746ee609eade7e3a0bc80192eadb5549c9b84
3
- size 816330521
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7c8328d47bfbfcd1d5d13e6be170e7c339b0ef05df2fb2943e95b834e0d7d5de
3
+ size 837796977
default/train/00005.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:29e8589663227c8e7fb3b9b25e82312d50e89fa3d1a56b0b925b2c64305d6274
3
- size 1021119777
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:867bdeff768e7c73396915321de6a9e07301f110d5f6f97419f6868ad850a3b5
3
+ size 909309881
default/train/00006.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0f8be2a6738ee391ddd7e5166607b093ce7d45df8395c9ef231bcd4d527cf799
3
- size 110739271
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a413d28c843d667da393e5042c96657c4113aaff66a705a3ef192a3ee422efcd
3
+ size 554159991
default/train/00007.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e5fbbf381289efd1aa453fd53e46542ade8af11c38b33cc061927e1887692816
3
- size 166224233
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62940090313ade37609501d9dfde62589940766f508ccbd5158afa61d662fef6
3
+ size 170641965
default/train/00008.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:7a36f0187122f9f495ac782d5a931184d51366e0a631f77e8017fdbdb8b4ac7c
3
- size 334912844
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7e4a3ac8c49ae05522ee8a058cf70c276b34a9bac622dbd8a1a2d5669bb5cd7
3
+ size 137404802
default/train/00009.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:c68ef9a6ff8011fed8a46d7dd81514ad20187977fa42232f047a181e03e26064
3
- size 649372651
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f50269842f7369ea3666f59cc7ef9f6a5f0888235051b8362641e2db46de702b
3
+ size 473213226
default/train/00010.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:905009fc7949711556f1586ee93eb1595787ee6186dfe55c65cd985802a0e88a
3
- size 742081818
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5e1b137eecbf179f76b7b16808e9a70629e1e81ff1e50117b5438e34c1fceb8
3
+ size 717322125
default/train/00011.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6d7db98b362605d678d0078a551a6a71d632ea8acacc56e864c04a8a0fda446b
3
- size 796437463
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dfd220414ff7230211ea93bb6f7d1a7d0cfed67dff6149991244c234b78bee2d
3
+ size 739346307
default/train/00012.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9f104f111c5596716e46fac773069fac15a59f7e46912734625bb97f2d7abe1e
3
- size 812880488
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f49cac0827d4a10e93b8383064ea0b9ad1d50122613c4dfd475d914c2716ba4
3
+ size 784174607
default/train/00013.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f82fa45a81ceac4e153e19ad3ee7d84d7fafcecbff483ce3b885cf1eb3cc0b16
3
- size 551295219
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cce4282fdb67c7c6ec1188c4937d476acba2ab28dad7687c6fe78b110894a5fd
3
+ size 940620945
default/train/00014.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:34e153415f187c5ba349bf8e366ee3a51a693d5252fe9f276f75bf0c51d02d2f
3
- size 187442644
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a94efc8333e98dc2336a0dbacffff77f7e3720dc358fa8b75537e91072f8c22
3
+ size 706184361
default/train/00015.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f85dc3ca2c8ea994badd2a9ed83739eb6ac8d55d8810fb99b69a1a9587603102
3
- size 33863885
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9b57fdc3ec1ed69cac6915e8c6e017fe1f3aa79384f25047a4a59989f15e1b1
3
+ size 374455941
default/train/00016.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:0b328c6753bdd72e80637311c8665ba85bd10870c100d6b3a8cb0d1976a9bb5f
3
- size 317818491
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3ea0576387b8be2b4ca03a4bb589c91ae1e1bd7c041012755798d4874e3c39ad
3
+ size 158228275
default/train/00017.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ea972a559cb8caa1d6c72e1a370cb2051fd139498c3012cb1faa39e95d1c681
3
- size 467378070
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1f422cb0a256ff6a2033d282eb821fcc28491ad6de26ad2ca89ee3a0f4ce4e4
3
+ size 134593930
default/train/00018.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:698925ded5eb2dff87579ea9bbb72e3449af2ed0a2fb4e3199e3d3ba38580aeb
3
- size 740196704
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c2974a808ffbc0e91c2819dcf858e178e4d029ec6201f3ebb1c66e094f79879
3
+ size 359924335
default/train/00019.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8e18e5fe647b2039cdba9c5d804902dbb730a70fcfc97ecad0a50004af636b1c
3
- size 188748947
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaaceacb87fff65bdd8a719190d9a1d3eae57443a16668c590138dfdaed993b0
3
+ size 411105911
default/train/00020.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bd3854890359c4c877c305deb20209627a6d524a915d60498731250698b16cdc
3
- size 463000577
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc150bcd6f75bfa531ed6c368674c2df41654c96d9ed112bb4a9a891da57cbf5
3
+ size 708389425
default/train/00021.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:46f733ddf5b639335da41f3b90fd5f56d939beaf4bbcdc58f009e179fae8ff5f
3
- size 442457612
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c7166ccc9a08dc0c95b0db92fd700e07a79e545472ff4a4f4d665011c478948
3
+ size 399175976
default/train/00022.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:76ac1da911db417418562ff1de7a77e50129184717bc97bae4fcfc8786f390a5
3
- size 750826234
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:284a0dc28abd0c0af708f14fedd9fe69985dda83ecd8334a21cc66d0193558bd
3
+ size 270313899
default/train/00023.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:87d4a9dd317156b408db6fe5dd524ad7749515818036cd72e00c6a5377e1e3b7
3
- size 848294436
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bc0a150e15267785e1eb3886020eb036520e762780ab3d47f995a144bc241cb
3
+ size 494550439
default/train/00024.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:73a693873eb1af9a9744239475ca4cbce26a7b0bbcabebbd033f40d214102e76
3
- size 714463492
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fe8b5e129a3f83b2304737114ff171281229ce6f7bf9100ad6a58c8408667980
3
+ size 386531881
default/train/00025.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:178535645181d30927ef671616fb99be4ce8c6a50eaccd4c92c390bc91973ceb
3
- size 974617926
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3da402de5aac7969890f9d0cc0d191f1b2a770a08adadee27aeee26c77f1a43b
3
+ size 655509979
default/train/00026.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5d83a60129da075006d0fe16eb910d137086b9cdd2d155bb85532863f3bb8726
3
- size 603725487
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1a2e7883d006fb8883e389a148cf458ae70190deafc5be94ced76e1459803c36
3
+ size 763612679
default/train/00027.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:965bd8e8848473582a957e58d4b718830cc13b523618795eaf3caeb03e6a6dbc
3
- size 196824848
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86da9f1817902a877f49935243a3044c3a9f19aae8c232b5d9b12c0748150fe4
3
+ size 718002877
default/train/00028.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:ee769dfa0121f2f61cbb67508a91448d9971c9cb1ff5d30fb1a9658bfb32b44e
3
- size 479178868
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7841cffe66e8893918205ee917ed708a020d26a1e7dd6cbace2a6fff5031f0a9
3
+ size 701098733
default/train/00029.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:53ec7de981bb5a437c5306182413f28506b560cf12a72db32ece53839d675ea8
3
- size 226187798
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da4353ce3fe27c8e80b4bde9781e9f8f239ad9b7e53aba4cf14a4ed6675c786c
3
+ size 618767423
default/train/00030.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fd4fe34750791a31b66aee20a11bd589933b61907d1f3b55fde091632f64af41
3
- size 266761770
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:99e65740e3e777ed1f50e9b344154af284fa110cc8eac2df01abf706f218a05d
3
+ size 794493094
default/train/00031.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:e9af6b33dc32078f85c13c7b665a49816c6a73a3398fc269d5f6d38b3dac7ccd
3
- size 485826154
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88c058a00cbab6fd9d804d90aa2c178a2fd8134117f9275e123fe66a52527f54
3
+ size 1257733794
default/train/00032.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:dc65c2c1b661c85359a88df7e747a10ef71b5ad7489e3a011332963d7fb06245
3
- size 351334107
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b50ae689f4dd2289b3d04a36d8f57369346b6a97ebdf0c46a531a91cf0686fd9
3
+ size 190734557
default/train/00033.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:433f8c07dbb2e3432a9b65ea10984cf1a3317cb52cf726cb94d1b9e36f276600
3
- size 360441904
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:de7857e11a690cb19b0e8b5b7e446fb3b03e9fbe2c91e4b7fab6d5cc578e6cf0
3
+ size 134805661
default/train/00034.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3dece16a5cd4986bc711d4893d4717a85239caecf9e240b3fc4be30e259c2f27
3
- size 858428181
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d16176291257fbd8b8d9bb7db5dd12bbf1bf9b7512917b392ebeaa6a5740860d
3
+ size 543919965
default/train/00035.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2ccc4eca0da6051703f035817e5538b630d2e80e4c36cead97ade2125f166986
3
- size 669679149
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7463c839d74049baeecd182921a37556fe3b5476be2c7a2125f6d05c24a4e26
3
+ size 274920382
default/train/00036.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4bb9f38514ebca694c55b07c50e81bb53c5289e01ee31df9a7219cc02591d145
3
- size 400364597
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:35bf6627d29453547bbe5016b0e0a5698c03a8c8059fb6959c007ea713b4a4ae
3
+ size 254378272
default/train/00037.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b993321530315b98fa085fd9537e12238d6226a4a6476e69314e54169269a35f
3
- size 322573691
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f58c0b7c058052708a0e7ceb32cc1b96d7c8449cca3099ec53902dbe026c6b3
3
+ size 347111869
default/train/00038.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf1f03b6a5bb08fac3e4adeeb47ab3cddbc63dfddc1378ef5ec8e6aefef14684
3
- size 294199947
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4c8e548e3f91f0f3a28f05080db2de32cc4f54f21cb51eac42c9bca20873fcc
3
+ size 377369349
default/train/00039.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:b8cb7e45a011697b0ce4aae2408cfeb332cc304280b50fe71b29a7bc63ae616c
3
- size 14932297
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:54b3db3e89bfd69045ddbdaf5d3c4b539b5f1565ebfe01807f736e8e69da1258
3
+ size 553113591
default/train/00040.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cac7566ae31ccb1401b076a4d66f5e265e7460911f6f73634f75e1626ac6bd11
3
+ size 456708065
default/train/00041.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3636702a03b44ac864d21a64df9b39d55c495637df95ed4dc83088382adfa065
3
+ size 750028557
default/train/00042.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:610e40e7a66eaca026b21c9464750c33f1d4ec646276aa7812fefc8dc85f77dd
3
+ size 589798419
default/train/00043.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:526a6fa4963c9e85486f0ea15fce371372aa1c56dd901dac9a2ba3131dd78bf4
3
+ size 690556042
default/train/00044.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4449672bbabd700f4fe2369ed3ffea42e16d813c51b5461d4865cc6561ab74f6
3
+ size 546694797
default/train/00045.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fc562d773c7cb4262a8d4ef26746e7a35da71abd4df4c0b64cbecf99468c74b
3
+ size 173844178
default/train/00046.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3acd178334f2d317108032a259ce9d8fc70cb63596e0787ee3205bc04cdfc1c6
3
+ size 562680887