This view is limited to 50 files because it contains too many changes.  See the raw diff here.
Files changed (50) hide show
  1. OpenHumnoidActuatedFaceData.py +119 -0
  2. README.md +3 -182
  3. full/train-00004-of-00307.parquet +0 -3
  4. full/train-00005-of-00307.parquet +0 -3
  5. full/train-00006-of-00307.parquet +0 -3
  6. full/train-00007-of-00307.parquet +0 -3
  7. full/train-00008-of-00307.parquet +0 -3
  8. full/train-00009-of-00307.parquet +0 -3
  9. full/train-00010-of-00307.parquet +0 -3
  10. full/train-00011-of-00307.parquet +0 -3
  11. full/train-00012-of-00307.parquet +0 -3
  12. full/train-00013-of-00307.parquet +0 -3
  13. full/train-00014-of-00307.parquet +0 -3
  14. full/train-00015-of-00307.parquet +0 -3
  15. full/train-00016-of-00307.parquet +0 -3
  16. full/train-00017-of-00307.parquet +0 -3
  17. full/train-00018-of-00307.parquet +0 -3
  18. full/train-00019-of-00307.parquet +0 -3
  19. full/train-00020-of-00307.parquet +0 -3
  20. full/train-00021-of-00307.parquet +0 -3
  21. full/train-00022-of-00307.parquet +0 -3
  22. full/train-00023-of-00307.parquet +0 -3
  23. full/train-00024-of-00307.parquet +0 -3
  24. full/train-00025-of-00307.parquet +0 -3
  25. full/train-00026-of-00307.parquet +0 -3
  26. full/train-00027-of-00307.parquet +0 -3
  27. full/train-00028-of-00307.parquet +0 -3
  28. full/train-00029-of-00307.parquet +0 -3
  29. full/train-00030-of-00307.parquet +0 -3
  30. full/train-00031-of-00307.parquet +0 -3
  31. full/train-00032-of-00307.parquet +0 -3
  32. full/train-00033-of-00307.parquet +0 -3
  33. full/train-00034-of-00307.parquet +0 -3
  34. full/train-00035-of-00307.parquet +0 -3
  35. full/train-00036-of-00307.parquet +0 -3
  36. full/train-00037-of-00307.parquet +0 -3
  37. full/train-00038-of-00307.parquet +0 -3
  38. full/train-00039-of-00307.parquet +0 -3
  39. full/train-00040-of-00307.parquet +0 -3
  40. full/train-00041-of-00307.parquet +0 -3
  41. full/train-00042-of-00307.parquet +0 -3
  42. full/train-00043-of-00307.parquet +0 -3
  43. full/train-00044-of-00307.parquet +0 -3
  44. full/train-00045-of-00307.parquet +0 -3
  45. full/train-00046-of-00307.parquet +0 -3
  46. full/train-00047-of-00307.parquet +0 -3
  47. full/train-00048-of-00307.parquet +0 -3
  48. full/train-00049-of-00307.parquet +0 -3
  49. full/train-00050-of-00307.parquet +0 -3
  50. full/train-00051-of-00307.parquet +0 -3
OpenHumnoidActuatedFaceData.py ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import json, random, math, os
2
+ from pathlib import Path
3
+ from datasets import (
4
+ BuilderConfig, DatasetInfo, DownloadManager, GeneratorBasedBuilder,
5
+ SplitGenerator, Split, Features, Image, Value
6
+ )
7
+ from huggingface_hub import hf_hub_url
8
+
9
+ _REPO_ID = "infosys/OpenHumnoidActuatedFaceData"
10
+ _IMAGES_PER_SHARD = 10_000 # how many files you put in each tar
11
+ _TAR_TPL = "images-{start:05d}-{end:05d}.tar" # file-name pattern
12
+
13
+
14
+ class ImageSubsetConfig(BuilderConfig):
15
+ def __init__(self, name, sample_size=None, **kw):
16
+ super().__init__(name=name, version="1.0.2",
17
+ description=kw.get("description", ""))
18
+ self.sample_size = sample_size
19
+
20
+
21
+ class MyImageDataset(GeneratorBasedBuilder):
22
+ BUILDER_CONFIGS = [
23
+ ImageSubsetConfig("full", sample_size=None,
24
+ description="Entire dataset (≈100 GB)"),
25
+ ImageSubsetConfig("small", sample_size=20_000,
26
+ description="20 K random images"),
27
+ ]
28
+ DEFAULT_CONFIG_NAME = "small"
29
+
30
+ # ------------------------------------------------------------------ #
31
+ # 1. Schema #
32
+ # ------------------------------------------------------------------ #
33
+ def _info(self):
34
+ return DatasetInfo(
35
+ description="Humanoid face images + 16 servo angles.",
36
+ features=Features(
37
+ {
38
+ "image": Image(), # PIL.Image is fine
39
+ "actuated_angle":
40
+ {str(i): Value("int32") for i in range(16)},
41
+ }
42
+ ),
43
+ )
44
+
45
+ # ------------------------------------------------------------------ #
46
+ # 2. Download #
47
+ # ------------------------------------------------------------------ #
48
+ def _split_generators(self, dl_manager: DownloadManager):
49
+ # ---- 2-a: load metadata -------------------------------------- #
50
+ meta_url = hf_hub_url(_REPO_ID, "metadata.json", repo_type="dataset")
51
+ meta_path = dl_manager.download(meta_url)
52
+ with open(meta_path, encoding="utf-8") as f:
53
+ metadata = json.load(f)
54
+
55
+ all_names = sorted(metadata)
56
+ selected = ( # sampling logic
57
+ sorted(random.sample(all_names, self.config.sample_size))
58
+ if self.config.sample_size else all_names
59
+ )
60
+ selected_set = set(selected)
61
+
62
+ # ---- 2-b: figure out which shards we need -------------------- #
63
+ max_idx = len(all_names) - 1
64
+ n_shards = math.floor(max_idx / _IMAGES_PER_SHARD) + 1
65
+ shard_files = [
66
+ _TAR_TPL.format(start=s*_IMAGES_PER_SHARD,
67
+ end=min((s+1)*_IMAGES_PER_SHARD-1, max_idx))
68
+ for s in range(n_shards)
69
+ ]
70
+
71
+ # ---- 2-c: download (and extract) each tar -------------------- #
72
+ tar_urls = [hf_hub_url(_REPO_ID, f, repo_type="dataset")
73
+ for f in shard_files]
74
+ local_tars = dl_manager.download(tar_urls) # .tar paths
75
+
76
+ # we’ll stream from the tar, so no extract() needed
77
+
78
+ return [
79
+ SplitGenerator(
80
+ name=Split.TRAIN,
81
+ gen_kwargs={
82
+ "tar_paths": local_tars,
83
+ "metadata": metadata,
84
+ "want": selected_set,
85
+ },
86
+ )
87
+ ]
88
+
89
+ # ------------------------------------------------------------------ #
90
+ # 3. Generate #
91
+ # ------------------------------------------------------------------ #
92
+ def _generate_examples(self, tar_paths, metadata, want):
93
+ """Stream over each tar and yield only requested files."""
94
+ idx = 0
95
+ for tar_path in tar_paths:
96
+ # iterate without extraction
97
+ for inner_path, fobj in \
98
+ self._iter_archive_fast(tar_path): # helper below
99
+ fname = Path(inner_path).name # strip tar prefix
100
+ if fname not in want:
101
+ continue
102
+
103
+ angles = metadata[fname]
104
+ yield idx, {
105
+ "image": {"bytes": fobj.read(), "path": fname},
106
+ "actuated_angle":
107
+ {str(i): int(angles.get(str(i), 0)) for i in range(16)}
108
+ }
109
+ idx += 1
110
+
111
+ # Small wrapper so we don’t import datasets.utils.file_utils directly
112
+ @staticmethod
113
+ def _iter_archive_fast(tar_path):
114
+ import tarfile
115
+ with tarfile.open(tar_path) as tar:
116
+ for member in tar:
117
+ if member.isfile():
118
+ f = tar.extractfile(member)
119
+ yield member.name, f
README.md CHANGED
@@ -1,6 +1,6 @@
1
  ---
2
  dataset_info:
3
- - config_name: full
4
  features:
5
  - name: image
6
  dtype: image
@@ -40,193 +40,14 @@ dataset_info:
40
  dtype: int32
41
  splits:
42
  - name: train
43
- num_bytes: 153291676475
44
- num_examples: 135236
45
- download_size: 153306274200
46
- dataset_size: 153291676475
47
- - config_name: small
48
- features:
49
- - name: image
50
- dtype: image
51
- - name: actuated_angle
52
- struct:
53
- - name: '0'
54
- dtype: int32
55
- - name: '1'
56
- dtype: int32
57
- - name: '2'
58
- dtype: int32
59
- - name: '3'
60
- dtype: int32
61
- - name: '4'
62
- dtype: int32
63
- - name: '5'
64
- dtype: int32
65
- - name: '6'
66
- dtype: int32
67
- - name: '7'
68
- dtype: int32
69
- - name: '8'
70
- dtype: int32
71
- - name: '9'
72
- dtype: int32
73
- - name: '10'
74
- dtype: int32
75
- - name: '11'
76
- dtype: int32
77
- - name: '12'
78
- dtype: int32
79
- - name: '13'
80
- dtype: int32
81
- - name: '14'
82
- dtype: int32
83
- - name: '15'
84
- dtype: int32
85
- splits:
86
- - name: train
87
- num_bytes: 22669945934
88
  num_examples: 20000
89
  download_size: 22672135072
90
- dataset_size: 22669945934
91
  configs:
92
- - config_name: full
93
- data_files:
94
- - split: train
95
- path: full/train-*
96
  - config_name: small
97
  data_files:
98
  - split: train
99
  path: small/train-*
100
  default: true
101
- license: mit
102
- task_categories:
103
- - robotics
104
- - reinforcement-learning
105
- tags:
106
- - robotics
107
- - humanoid
108
- - reinforcement
109
- - learning
110
- size_categories:
111
- - 100K<n<1M
112
- ---
113
-
114
- # 🤖 Open Humanoid Actuated Face Dataset
115
-
116
- <p align="center">
117
- <img src="https://huggingface.co/datasets/iamirulofficial/Test2/resolve/main/imgesFace.png" alt="Sample Face Image" width="400"/>
118
- </p>
119
-
120
- ## Dataset Summary
121
- The **Open Humanoid Actuated Face Dataset** is designed for researchers working on
122
- facial‑actuation control, robotics, reinforcement learning, and human–computer interaction.
123
-
124
- * **Origin** – collected during a reinforcement‑learning (RL) training loop whose objective was to reproduce human facial expressions.
125
- * **Platform** – a modified **i2Head InMoov** humanoid head with a silicone skin.
126
- * **Control** – **16 actuators** driving facial features and eyeballs.
127
- * **Pairing** – each example contains the raw RGB image **and** the exact actuator angles that produced it.
128
-
129
- ---
130
-
131
- ## Dataset Structure
132
-
133
- | Field | Type | Description |
134
- |-----------------|---------------|---------------------------------------------------------------|
135
- | `image` | `Image` | RGB capture of the humanoid face (resolution **1280x720**). |
136
- | `actuated_angle`| `struct` | 16 integer key - values (`"0"`, `"1"` .. so on) |
137
-
138
-
139
- ### Actuator Index Reference
140
-
141
- | Idx | Actuator | Idx | Actuator |
142
- |:---:|--------------------------------|:---:|-------------------------|
143
- | 00  | Cheek – Left | 08  | Eyelid Upper – Right |
144
- | 01  | Cheek – Right | 09  | Eyelid Lower – Right |
145
- | 02  | Eyeball Sideways – Left | 10  | Forehead – Right |
146
- | 03  | Eyeball Up/Down – Left | 11  | Forehead – Left |
147
- | 04  | Eyelid Upper – Left | 12  | Upper Nose |
148
- | 05  | Eyelid Lower – Left | 13  | Eyebrow – Right |
149
- | 06  | Eyeball Up/Down – Right | 14  | Jaw |
150
- | 07  | Eyeball Sideways – Right | 15  | Eyebrow – Left |
151
-
152
- ---
153
-
154
- ### Actuator Mapping Images
155
-
156
- | Full‑Face Map | Eye‑Only Map |
157
- |:-------------:|:-----------:|
158
- | <br><img src="https://huggingface.co/datasets/iamirulofficial/Test2/resolve/main/Screenshot%202025-05-02%20at%204.04.28%E2%80%AFPM.png" width="50%"/> | <br><img src="https://huggingface.co/datasets/iamirulofficial/Test2/resolve/main/Screenshot%202025-05-02%20at%204.03.56%E2%80%AFPM.png" width="50%"/> |
159
-
160
-
161
- ---
162
-
163
- ## Dataset Statistics
164
-
165
- | Split | Samples | Size |
166
- |-------|---------|------|
167
- | **Train (full)** | **[135k]** | ≈ 153 GB |
168
- | **Train (small)** | 20k | ≈ 22 GB |
169
-
170
-
171
- ---
172
-
173
- ## Usage Example
174
-
175
- ```python
176
- from datasets import load_dataset, Image
177
-
178
- # load the small subset
179
- ds = load_dataset("infosys/OpenHumnoidActuatedFaceData", name="small", split="train")
180
- ds = ds.cast_column("image", Image()) # decode image bytes ➜ PIL.Image
181
-
182
- img = ds[0]["image"]
183
- angles = ds[0]["actuated_angle"] # {'0': 90, '1': 20, ...}
184
- img.show()
185
- print(angles)
186
- ````
187
-
188
- > **Tip** 
189
- > For the full corpus use `name="full"` (may require `streaming=True` once the dataset grows).
190
-
191
- ---
192
-
193
- ## Data Collection & RL Setup
194
-
195
- A detailed description of the RL pipeline, reward design, and actuator hardware will appear in our upcoming paper (in preparation, 2025). Briefly:
196
-
197
- 1. **Vision module** extracts target expression keypoints from live human video.
198
- 2. **Policy network** predicts 16 actuator set‑points.
199
- 3. **Real‑time reward** computes expression similarity + smoothness penalties.
200
- 4. Images & angle vectors are logged every *N* steps, forming this dataset.
201
-
202
- ---
203
-
204
- ## License
205
-
206
- Released under the **MIT License** – free for commercial and non‑commercial use.
207
-
208
- ---
209
-
210
- ## Citation
211
-
212
- ```bibtex
213
- @misc{amirul2025openhumanoidface,
214
- title = {Open Humanoid Actuated Face Dataset},
215
- author = {Amirul et al.},
216
- year = {2025},
217
- url = {https://huggingface.co/datasets/infosys/OpenHumnoidActuatedFaceData}
218
- }
219
- ```
220
-
221
  ---
222
-
223
- ## Contribution
224
- 1. Amirul Islam (amirul.islam@infosys.com)
225
- 2. Anant Pande (anant.pande@infosys.com)
226
- 3. Allahbaksh Asadullah (allabaksh_asadullah@infosys.com) - Mentor
227
-
228
-
229
- ## Acknowledgements
230
-
231
- Big thanks to the Infosys and Mohammed Rafee Tarafdar (CTO, Infosys) for providing us resources to work on this research project and thanks to all the community and everyone who helped us making this possible.
232
-
 
1
  ---
2
  dataset_info:
3
+ config_name: small
4
  features:
5
  - name: image
6
  dtype: image
 
40
  dtype: int32
41
  splits:
42
  - name: train
43
+ num_bytes: 22669945934.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  num_examples: 20000
45
  download_size: 22672135072
46
+ dataset_size: 22669945934.0
47
  configs:
 
 
 
 
48
  - config_name: small
49
  data_files:
50
  - split: train
51
  path: small/train-*
52
  default: true
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  ---
 
 
 
 
 
 
 
 
 
 
 
full/train-00004-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2ee63e92bf42767597c27abc3be378cdd68054b4cb3d9aea9d5aa997b8f041a0
3
- size 499598982
 
 
 
 
full/train-00005-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:409f556f74d273a40ac69474ef032ab1a468e7a202b7448bf0402321fa3c1ba9
3
- size 500240073
 
 
 
 
full/train-00006-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5436427ceb30ae23ead3d4d25d9c48ab9be28e585dc58e09a000f75cccbcd1a8
3
- size 500015431
 
 
 
 
full/train-00007-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:83f641366b33ba6a3c8124eccecbef9254339cd3c3daab78fb125a8c037f7e64
3
- size 499834580
 
 
 
 
full/train-00008-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:92dd9f43df3a79863bf807528110f52f5500fbcd62100ee65c043b72b390256a
3
- size 499836229
 
 
 
 
full/train-00009-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:59c623ccffe334e5066b066366d42b2eeca92eaf378ebaa30f891a1909b43bb7
3
- size 499942071
 
 
 
 
full/train-00010-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:96357fec66c49a6cb77e023ee865f88cba7c5a3233c4809fa858ae3b1b60f066
3
- size 500189640
 
 
 
 
full/train-00011-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a76c4c4c733598c66af5df3cc16c679340a9f7de93a26e879b7ba471388d904f
3
- size 500254440
 
 
 
 
full/train-00012-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:eb63b497f4fb416f6ac5eba12027b28ba716104b7663ccbd4541ef67c57053d4
3
- size 499923422
 
 
 
 
full/train-00013-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d3c52139082e57aba6a88227d281074f6b34ef2dbed8f3fdba9a785adffc0c84
3
- size 499753501
 
 
 
 
full/train-00014-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d363cb7dd2f3e1b39733304207f2a8fd59ef5b2fb5d42f6ff22b382c49d9e875
3
- size 499685629
 
 
 
 
full/train-00015-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6356789d005373c5d405a65557a6f1f62a568589aef4b8bab53336ecebab61c2
3
- size 499832845
 
 
 
 
full/train-00016-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:eef1d720a089b9d3f56ebea9a68ebbd5d14d653ae210369541d05bca47b4ddfc
3
- size 499947137
 
 
 
 
full/train-00017-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2cfbd89ab1b604d79d88c37bb1fbf0b17ba12254e0eaf3c57252f472f7d705ba
3
- size 499951517
 
 
 
 
full/train-00018-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6e2ca4b1b9d2f1ba7774a3a8180a03d4f9daa1485057b19e5c4149ee4d5cc6d5
3
- size 499893971
 
 
 
 
full/train-00019-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf3ca353dc5175c24dca7007b4dda680d4d8ed6b124ca271af83f83074bae8e1
3
- size 499978206
 
 
 
 
full/train-00020-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:43e663a735e453c57724c5035d5066e61f22894b5b69f3b23f2dfc0cedc05603
3
- size 499822205
 
 
 
 
full/train-00021-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:74b9ff677985bd0e724608f7d86b2455fb125064b911684dddc428dda80548e1
3
- size 500089869
 
 
 
 
full/train-00022-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:4ef5a39885b87e35ef3a4a5c11b148a9dc36fbc55797acc0e3e2f02cd7927c32
3
- size 499673371
 
 
 
 
full/train-00023-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:53a50a0ccca9dda5698a8c0f311e79654f42c4a7b861c50d6e0f886cadf06ef3
3
- size 499999926
 
 
 
 
full/train-00024-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:d284a54e268fe205698a4c1a9e4d8a68040fe7851dfa00d78dc079c6eb0121ba
3
- size 499833502
 
 
 
 
full/train-00025-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:33d59073e208bfce797b0edc601924d54c8cc995c794da2966b527a222fafb89
3
- size 499898459
 
 
 
 
full/train-00026-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:36a5a6c7ff2b6605143b078dd9492693fff3f9eadca58053ef7203d32763f3b1
3
- size 499772047
 
 
 
 
full/train-00027-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8049737dee9b7d67caf880d8cd30fdea8df8339f52c24f509c814f34182210f3
3
- size 499770759
 
 
 
 
full/train-00028-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:51d34db4cddb3e70b087fba921c6a60f61b940d3b3d5ac3ac9b840a7fd3befe6
3
- size 499917271
 
 
 
 
full/train-00029-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:75e286a23ecd65b3cd369ba432bd8e1e6e1bfc4a449cb7c63f33c5eb4642e9e6
3
- size 500448295
 
 
 
 
full/train-00030-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:768d43e8d01805dacbca1dd042ceda3582abf40447ff62313c0b53a7cd294f06
3
- size 499886216
 
 
 
 
full/train-00031-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:1fc4af707ac83c521c7a621b6d698044ec4d3c068a3d2ba569944546f50eca76
3
- size 499840672
 
 
 
 
full/train-00032-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:47a82f70a032f38649865a22b66ae5a3f4a89502b903da6a30fdb6f9cdc2d186
3
- size 499723884
 
 
 
 
full/train-00033-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:697beafa56c73cce41ba9aaf6f20e5c395281bb326b009febe402d51761c60a7
3
- size 500267792
 
 
 
 
full/train-00034-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:20e695d4136592a784151ee44f9e73cbb3c74eed455db2dd41092237114d8742
3
- size 500086187
 
 
 
 
full/train-00035-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:e814dc2bf0c907d9f3c1cb372bb7b4d6696a1f6ce5df8a6f9f784d63ad3458c4
3
- size 499820278
 
 
 
 
full/train-00036-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:ad179eeab990dfd47f78fdadb14b23441d9e14936ab1d1a7377fb3e21291de7d
3
- size 499654660
 
 
 
 
full/train-00037-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:8f93334e8bfff79f26e8562135f2acf33dd73e686e757f44da990b9f253e46bd
3
- size 499912012
 
 
 
 
full/train-00038-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:2c38c4db81fcc68a2f261fa4e77b3bf48f901ad1591d83f85b7bb9937fc54be0
3
- size 500186781
 
 
 
 
full/train-00039-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:5a7892dadeb17a34cbd57cd04f7a24a1376fb273ce4a3c3ea637515ee5ae45a3
3
- size 499673204
 
 
 
 
full/train-00040-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6fd06c0c6bf2ba1c0a6cf5da40f24ea2e06140867d0d4863270c48fffa092361
3
- size 499932610
 
 
 
 
full/train-00041-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:a8d9f03650e94b5faad3b1dc205463647b2436934c2eefeecdcec841221f66c7
3
- size 499862634
 
 
 
 
full/train-00042-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6ab5ef7dfaaaaf2e540ddd754d20f3ddd2c11a1108d6a38c2c978236d44e1a9e
3
- size 499688902
 
 
 
 
full/train-00043-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:0551ee7438cc9f6fd74d471b9e687a684001f28f9391ebe31546310dcbf77f9f
3
- size 499913877
 
 
 
 
full/train-00044-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:85e4e5cdc578c53e17e818ddd95c21328ff6772f6721f2cf4beea26718fc37df
3
- size 499889465
 
 
 
 
full/train-00045-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf349d5974e1eb8bbf85c984d1c5a9fe350f72705b8fa8d952f792afadeaee30
3
- size 499918693
 
 
 
 
full/train-00046-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cd27a8e6257901708e326742206c8c1f4d9e66fe4205bf0f0f7b524e459180e7
3
- size 500052297
 
 
 
 
full/train-00047-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:beab0cfdb7828438f9b19a4ddd3ea5e4578115b6b619fe101385ea98825db792
3
- size 500053261
 
 
 
 
full/train-00048-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:86ba591cfb0156e67f6fad49571f3322209bc67e4ad500d3e37f69489967bae3
3
- size 499987779
 
 
 
 
full/train-00049-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:514a745d327ff726430d22b103fd1d0285b6bc6de76f462157fec5b0030c65ff
3
- size 499675121
 
 
 
 
full/train-00050-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:82ab961de7dafd033765dc074b9dffdd4eb138b4b59992887a61a6322a68c368
3
- size 499904804
 
 
 
 
full/train-00051-of-00307.parquet DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:514a8e815081770033c628602dfd46df81b05e4fa4af127b191a41723b42abde
3
- size 499687329