Minahil Raza commited on
Commit
619f020
·
1 Parent(s): 4d924a6

Merged papercup, scraptape, and black cube datasets

Browse files
.gitattributes CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ *.json filter=lfs diff=lfs merge=lfs -text
combined_data/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:845709a0c820c384785601e1690aef4bed296a6d6f529eb3fec9999e2bbf85e4
3
+ size 507016
combined_data/dataset_info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4cdf697aaed7d9293afa0f8ebf2cf5ccf7bed3526778015c450de18d5766580
3
+ size 3164
combined_data/state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eaf20e7e015f414d73300cd00bdcc8a971a2dbad9dd134fd07c9924295cb3e7
3
+ size 250
data/picknplace-black-cube/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:845709a0c820c384785601e1690aef4bed296a6d6f529eb3fec9999e2bbf85e4
3
+ size 507016
data/picknplace-black-cube/dataset_info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4cdf697aaed7d9293afa0f8ebf2cf5ccf7bed3526778015c450de18d5766580
3
+ size 3164
data/picknplace-black-cube/state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eaf20e7e015f414d73300cd00bdcc8a971a2dbad9dd134fd07c9924295cb3e7
3
+ size 250
data/picknplace-papercup/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:454b0c5859a48d7229116366739a1510226cbef68f0be3908e0c0b66e95d6b58
3
+ size 606704
data/picknplace-papercup/dataset_info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53fcacbc0c7a6d20f1be65184c42488277a9bab9abc92561ff0c4fe797a7693d
3
+ size 3520
data/picknplace-papercup/state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:68843c43dcb3e40689a638adaef7f2e6c94845aa01b11af8c40f36acb57dd09f
3
+ size 250
data/picknplace-scraptape/data-00000-of-00001.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:575cd8b36735f4b3424264d95d63c1abcd323edc254d50f560ccd1eaa537f85b
3
+ size 506344
data/picknplace-scraptape/dataset_info.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c954bb2da563634dddd0ddfbc9e81451780acb600983aac10cb711b0400b096
3
+ size 3152
data/picknplace-scraptape/state.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be5366028c5ca8928cf29c87b3dcbe1f437f15a95d68264ec49bafe83bf68148
3
+ size 250
merge_data.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from datasets import load_dataset
2
+ import os
3
+ import shutil
4
+
5
+ # Define local folders
6
+ output_dir = "data"
7
+
8
+ # Load and save each dataset
9
+ for name in ["picknplace-papercup", "picknplace-scraptape", "picknplace-black-cube"]:
10
+ print(f"Downloading {name}...")
11
+ dataset = load_dataset(f"minahilraza/{name}")
12
+ dataset["train"].save_to_disk(os.path.join(output_dir, name))