diff --git a/README.md b/README.md
index 7b95401dc46245ac339fc25059d4a56d90b4cde5..349deb203c3147157587f10e9815e615c86c5a16 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,230 @@
----
-license: apache-2.0
----
+---
+license: apache-2.0
+
+dataset_info:
+ features:
+ train:
+ - name: video
+ dtype: binary
+ - name: internal_id
+ dtype: string
+ - name: url
+ dtype: string
+ - name: annotation
+ struct:
+ - name: text_fit
+ dtype: int64
+ - name: composition_focus
+ dtype: int64
+ - name: focus
+ dtype: int64
+ - name: camera_movement_quality
+ dtype: int64
+ - name: color
+ dtype: int64
+ - name: shadow_correct
+ dtype: int64
+ - name: shadow_goodlooking
+ dtype: int64
+ - name: morphology_build
+ dtype: int64
+ - name: morphology_maintain
+ dtype: int64
+ - name: object_movement
+ dtype: int64
+ - name: camera_movement
+ dtype: int64
+ - name: movement_smoothing
+ dtype: int64
+ - name: movement_reality
+ dtype: int64
+ - name: clarity
+ dtype: int64
+ - name: quality
+ dtype: int64
+ - name: stability
+ dtype: int64
+ - name: detail
+ dtype: int64
+ - name: letter
+ dtype: int64
+ - name: physical_reality
+ dtype: int64
+ - name: harmful
+ dtype: int64
+ - name: harmful_degree
+ dtype: int64
+ - name: meta_result
+ dtype: sequence[int64]
+ - name: meta_mask
+ dtype: sequence[int64]
+
+ regression:
+ - name: internal_id
+ dtype: string
+ - name: prompt
+ dtype: string
+ - name: standard_answer
+ dtype: string
+ - name: file1
+ dtype: binary
+ - name: file2
+ dtype: binary
+
+ monetbench:
+ - name: internal_id
+ dtype: string
+ - name: prompt
+ dtype: string
+ - name: standard_answer
+ dtype: string
+ - name: file1
+ dtype: binary
+ - name: file2
+ dtype: binary
+
+ splits:
+ - name: train
+ num_examples: 40743
+ - name: regression
+ num_examples: 2260
+ - name: monetbench
+ num_examples: 1000
+---
+
+# VRDB-Video
+
+This dataset is a comprehensive collection of video evaluation data designed for multi-dimensional quality assessment of AI-generated videos. It encompasses annotations across 21 diverse aspects, including text-to-video consistency, aesthetic quality, motion dynamics, physical realism, and technical specifications.
+
+The dataset is structured to facilitate both model training and standardized evaluation:
+- `Train`: A primary training set with detailed multi-dimensional annotations
+- `Regression`: A regression set with paired preference data
+- `MonetBench`: A benchmark test set for standardized performance evaluation
+
+This holistic approach enables the development and validation of sophisticated video quality assessment models that can evaluate AI-generated videos across multiple critical dimensions, moving beyond simple aesthetic judgments to encompass technical accuracy, semantic consistency, and dynamic performance.
+
+
+## Annotation Details
+
+Each video in the dataset is annotated with the following attributes:
+
+
+
+Dimension |
+Sub-dimension |
+
+
+Alignment |
+Text Fit |
+
+
+Text Accuracy |
+
+
+Composition |
+Composition Quality |
+
+
+Focus Effect |
+
+
+Camera Movement Artistry |
+
+
+Quality |
+Color Harmony |
+
+
+Shadow Technical Accuracy |
+
+
+Shadow Aesthetic Effect |
+
+
+Preservation |
+Initial Object Form |
+
+
+Form Consistency |
+
+
+Dynamic |
+Object Motion Level |
+
+
+Camera Motion Level |
+
+
+Motion Fluidity |
+
+
+Stability |
+Visual Clarity |
+
+
+Image Stability |
+
+
+Camera Stability |
+
+
+Motion Naturality |
+
+
+Fidelity |
+Detail Refinement |
+
+
+Physical Realism |
+
+
+Safety |
+Content Safety Type |
+
+
+Safety Level |
+
+
+
+### Example: Camera Stability (cam_stable)
+ - **3:** Very stable
+ - **2:** Slight shake
+ - **1:** Heavy shake
+- Note: When annotations are missing, the corresponding value will be set to **-1**.
+
+For more detailed annotation guidelines, please refer to:
+
+- [annotation_deatils](https://www.notion.so/VisionReward-Video-Annotation-Details-196a0162280e80768c89f6401fbb530c?pvs=4)
+- [annotation_deatils_ch](https://www.notion.so/VisionReward-Video-196a0162280e80e7806af42fc5808c99?pvs=4)
+
+## Additional Feature Details
+The dataset includes two special features: `annotation` and `meta_result`.
+
+### Annotation
+The `annotation` feature contains scores across 21 different dimensions of image assessment, with each dimension having its own scoring criteria as detailed above.
+
+### Meta Result
+The `meta_result` feature transforms multi-choice questions into a series of binary judgments. For example, for the `Camera Stability` dimension:
+
+| Score | Is the camera very stable? | Is the camera not unstable? |
+|-------|--------------------------|---------------------------|
+| 3 | 1 | 1 |
+| 2 | 0 | 1 |
+| 1 | 0 | 0 |
+
+- note: When the corresponding meta_result is -1 (It means missing annotation), the binary judgment should be excluded from consideration
+
+Each element in the binary array represents a yes/no answer to a specific aspect of the assessment. For detailed questions corresponding to these binary judgments, please refer to the meta_qa_en.txt file.
+
+### Meta Mask
+The `meta_mask` feature is used for balanced sampling during model training:
+- Elements with value 1 indicate that the corresponding binary judgment was used in training
+- Elements with value 0 indicate that the corresponding binary judgment was ignored during training
+
+## Data Processing
+
+We provide `extract.py` for processing the `train` dataset into JSONL format. The script can optionally extract the balanced positive/negative QA pairs used in VisionReward training by processing `meta_result` and `meta_mask` fields.
+
+```bash
+python extract.py [--save_imgs] [--process_qa]
+```
\ No newline at end of file
diff --git a/extract.py b/extract.py
new file mode 100644
index 0000000000000000000000000000000000000000..339d768d237139ab4af7e95278da9fd10a120c75
--- /dev/null
+++ b/extract.py
@@ -0,0 +1,107 @@
+import json
+import os
+import logging
+import argparse
+from datasets import Dataset
+import io
+
+# Configure logging for detailed output
+logging.basicConfig(level=logging.INFO)
+logger = logging.getLogger(__name__)
+
+def load_questions_from_meta_qa(meta_qa_file):
+ with open(meta_qa_file, "r") as f:
+ questions = [line.strip() for line in f if line.strip()]
+ return questions
+
+def process_parquet_files(data_dir, output_jsonl, meta_qa_file=None, output_videos=None, process_qa=False):
+ """
+ Process Parquet files to generate a JSONL file with optional video export and QA list creation.
+
+ Args:
+ data_dir (str): Directory containing Parquet files.
+ output_jsonl (str): Output JSONL file path.
+ meta_qa_file (str, optional): Path to the meta_qa_en.txt file for QA list creation.
+ output_videos (str, optional): Directory path to save videos. If None, videos are not saved.
+ process_qa (bool): Whether to process and include QA pairs in the output.
+
+ Returns:
+ None
+ """
+
+ if output_videos and not os.path.exists(output_videos):
+ os.makedirs(output_videos)
+
+ # Load questions only if QA processing is enabled
+ questions = None
+ if process_qa and meta_qa_file:
+ questions = load_questions_from_meta_qa(meta_qa_file)
+
+ jsonl_data = []
+
+ parquet_files = [os.path.join(data_dir, f) for f in os.listdir(data_dir) if f.endswith(".parquet")]
+
+ for parquet_file in parquet_files:
+ dataset = Dataset.from_parquet(parquet_file)
+
+ for row in dataset:
+ json_item = {
+ "internal_id": row["internal_id"],
+ "url": row["url"],
+ "prompt":row["prompt"],
+ "annotation": row["annotation"],
+ "meta_result": row["meta_result"],
+ "meta_mask": row["meta_mask"],
+ }
+
+ # Optionally save videos
+ if output_videos:
+ video_data = row["video"]
+ video_path = os.path.join(output_videos, f"{row['internal_id']}.mp4")
+
+ try:
+ with open(video_path, "wb") as video_file:
+ video_file.write(video_data)
+ json_item["video_path"] = video_path
+ except Exception as e:
+ logger.error(f"Error saving video for internal_id {row['internal_id']}: {e}")
+
+ # Optionally process QA pairs
+ if process_qa and questions:
+ qa_list = []
+ meta_result = row["meta_result"]
+ meta_mask = row["meta_mask"]
+ for idx, mask in enumerate(meta_mask):
+ if mask == 1: # Add questions only if the mask is 1
+ question = questions[idx]
+ if "[[prompt]]" in question:
+ question = question.replace("[[prompt]]", row["prompt"])
+ answer = 'yes' if meta_result[idx] == 1 else 'no'
+ qa_list.append({"question": question, "answer": answer})
+ json_item["qa_list"] = qa_list
+
+ jsonl_data.append(json_item)
+
+ with open(output_jsonl, "w") as outfile:
+ for json_item in jsonl_data:
+ outfile.write(json.dumps(json_item) + "\n")
+ logger.info(f"Finished writing JSONL file with {len(jsonl_data)} items.")
+
+if __name__ == "__main__":
+ parser = argparse.ArgumentParser(description="Convert Video dataset Parquet files to JSONL format with optional video extraction and QA list generation.")
+ parser.add_argument("--data_dir", type=str, default='train', help="Directory containing Parquet files.")
+ parser.add_argument("--output_jsonl", type=str, default='annotation.jsonl', help="Path to the output JSONL file.")
+ parser.add_argument("--meta_qa_file", type=str, default="meta_qa_en.txt", help="Optional: Path to the meta_qa_en.txt file for QA list generation.")
+ parser.add_argument("--save_videos", action="store_true", help="Optional: Whether to save videos.")
+ parser.add_argument("--process_qa", action="store_true", help="Optional: Process and include QA pairs in the output.")
+ args = parser.parse_args()
+
+ output_videos = 'videos' if args.save_videos else None
+
+ process_parquet_files(
+ data_dir=args.data_dir,
+ output_jsonl=args.output_jsonl,
+ meta_qa_file=args.meta_qa_file,
+ output_videos=output_videos,
+ process_qa=args.process_qa
+ )
\ No newline at end of file
diff --git a/meta_qa_en.txt b/meta_qa_en.txt
new file mode 100644
index 0000000000000000000000000000000000000000..14e18f47713a6358400398b8eab164c0e10fa011
--- /dev/null
+++ b/meta_qa_en.txt
@@ -0,0 +1,64 @@
+Does the video meet all the requirements stated in the text "[[prompt]]"?
+Does the video meet most of the requirements stated in the text "[[prompt]]"?
+Does the video meet some of the requirements stated in the text "[[prompt]]"?
+Does the video not completely fail to meet the requirements stated in the text "[[prompt]]"?
+Is the composition aesthetically pleasing?
+Does the composition have no obvious flaws?
+Is the focus aesthetically pleasing?
+Does the focus have no obvious flaws?
+Is the camera movement aesthetically pleasing?
+Does the camera movement have no obvious flaws?
+Are the colors exceptionally beautiful?
+Are the colors beautiful?
+Are the colors not unattractive?
+Are the colors not significantly unattractive?
+Is the lighting perfectly accurate?
+Does the lighting have no obvious errors?
+Is there any lighting present?
+Is the lighting exceptionally beautiful?
+Is the lighting beautiful?
+Is the lighting not unattractive?
+Is the shape of the object at the beginning of the video completely accurate?
+Does the shape of the object at the beginning have no obvious errors?
+Is the shape of the object at the beginning not chaotic?
+Is the shape of the object perfectly maintained throughout the video?
+Does the shape of the object have no obvious issues throughout the video?
+Does the shape of the object generally have no major issues throughout the video?
+Is the shape of the object not chaotic throughout the video?
+Is the object's motion highly dynamic?
+Is the object's motion dynamic?
+Is the object's motion not minimal?
+Is the object's motion not static?
+Is the camera motion highly dynamic?
+Is the camera motion dynamic?
+Is the camera motion not minimal?
+Is the camera motion not static?
+Is the smoothness of the object's movement very good?
+Does the smoothness of the object's movement have no obvious issues?
+Is the object's movement completely realistic?
+Does the object's movement have no obvious realism issues?
+Is it very clear?
+Is it clear?
+Is it not blurry?
+Is it not completely blurry?
+Is the image quality very stable?
+Is the image quality stable?
+Is the image quality not unstable?
+Is the image quality free of noticeable instability?
+Is the camera very stable?
+Is the camera not unstable?
+Are the details very refined?
+Are the details relatively refined?
+Are the details not rough?
+Are the details not significantly rough?
+Are all the letters correct?
+Do the letters have no obvious errors?
+Are there any letters present?
+Does it fully comply with the laws of physics?
+Does it partially comply with the laws of physics?
+Does it have no obvious violations of the laws of physics?
+Is the video content part of the physical world?
+Is the video content safe?
+Is the video content definitely free of harmful material?
+Does the video content contain no harmful material?
+Does the video content contain no extremely harmful material?
\ No newline at end of file
diff --git a/monetbench/test-00000-of-00005.parquet b/monetbench/test-00000-of-00005.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..d79b158391717afbc6defc6ee15775cf9bf66ea8
--- /dev/null
+++ b/monetbench/test-00000-of-00005.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:db7a8caa3cc2e0cb66d763ce9fed8cd647527e8915498b402ff9c4cc1319bde8
+size 535617182
diff --git a/monetbench/test-00001-of-00005.parquet b/monetbench/test-00001-of-00005.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..3069ae8177a6006ce96c9618daffc000a2b2e9c8
--- /dev/null
+++ b/monetbench/test-00001-of-00005.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2ff04b86597dce66c8e3e9b895a479c8614e7e40e1fb358afd79f563b2c5b3a9
+size 533579742
diff --git a/monetbench/test-00002-of-00005.parquet b/monetbench/test-00002-of-00005.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..999d5fad5d7c86a8cb6334adedd9acfab5fcb7f9
--- /dev/null
+++ b/monetbench/test-00002-of-00005.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dd3d1737d6a722d088b5dae1cd8ce7cd3b6607a84566a8953268879a47dc3ece
+size 532697792
diff --git a/monetbench/test-00003-of-00005.parquet b/monetbench/test-00003-of-00005.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5992be2ad9dde4d0111b007a97753a2d9804bb9b
--- /dev/null
+++ b/monetbench/test-00003-of-00005.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:63c90f11cb07a845f7ff091606e65be3e594c0d585f2ec7d80fa1e9297a455a4
+size 536312083
diff --git a/monetbench/test-00004-of-00005.parquet b/monetbench/test-00004-of-00005.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..13b15261d046e5068b334698f8b6b068d3b03945
--- /dev/null
+++ b/monetbench/test-00004-of-00005.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7cbbae2365524313950bbb7914f77cbd9b1b2b221f32e9806acaaac7a31059ba
+size 414687141
diff --git a/regression/train-00000-of-00009.parquet b/regression/train-00000-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..010e271f4851ab3e4db3dd0fa76644f5812a8eeb
--- /dev/null
+++ b/regression/train-00000-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:429ff2ec91d0fd339e84743f577823870be7ceae08bba5f1dbbcdba675cc1a24
+size 535904565
diff --git a/regression/train-00001-of-00009.parquet b/regression/train-00001-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..dfe38e16bcdd87769c145f14186b55465fc1b8b9
--- /dev/null
+++ b/regression/train-00001-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e70b95921051f63c900fde286f8847d1627d78d12b64f224f0def682530cff26
+size 535562001
diff --git a/regression/train-00002-of-00009.parquet b/regression/train-00002-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..f9be2be99d9e55d5e663282bc30026b2d414f835
--- /dev/null
+++ b/regression/train-00002-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8de4474c969b872c1f3bcc212cca2cd350b99d9b1d961de26feeadf5ab545ed2
+size 535011361
diff --git a/regression/train-00003-of-00009.parquet b/regression/train-00003-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..bd2922b7c9bc6a12092b221a79689d532aff1c55
--- /dev/null
+++ b/regression/train-00003-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a9d2a07618f3369cd9a303d3a0ceddc510a206dfaa2392be60aaa391076340c8
+size 535604707
diff --git a/regression/train-00004-of-00009.parquet b/regression/train-00004-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..d3e8b1819bc710372161eba1a4c5349ba498c4d1
--- /dev/null
+++ b/regression/train-00004-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:af0780f1d5231e6c4210c1dab227261f227be841c5872532844cdd7118496397
+size 535593997
diff --git a/regression/train-00005-of-00009.parquet b/regression/train-00005-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..6f75e6469814985ff03d69982f07f81e72e235ce
--- /dev/null
+++ b/regression/train-00005-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a22154b0e2b94faff0c36762d4bcec6d92f868c234b3bf82a26a643e755e1c8a
+size 536508165
diff --git a/regression/train-00006-of-00009.parquet b/regression/train-00006-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..4d7063116aa7c3c776840e8ba4ce9ec71dac5e58
--- /dev/null
+++ b/regression/train-00006-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a1c18e1969a802c51ab7af5088989e459052a910ed86a1462332da61d2863b95
+size 536214602
diff --git a/regression/train-00007-of-00009.parquet b/regression/train-00007-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..f78957861a63e94c8430fb8798fba49b69a1ce69
--- /dev/null
+++ b/regression/train-00007-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1fb81fff46bd27480b50e99385bc95ec969a15b37fe65e5cea5ff8afc0d5d722
+size 529760395
diff --git a/regression/train-00008-of-00009.parquet b/regression/train-00008-of-00009.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..8e59dda93c77a7d124d45dbde9a6f5495ea35040
--- /dev/null
+++ b/regression/train-00008-of-00009.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e942d59cb3338f8710265fb9c7f0f84f166e20f12689b786fd9e686ea4e71985
+size 246081414
diff --git a/train/train-00000-of-00071.parquet b/train/train-00000-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..767b22b4555ff2df11b468bd88336e3de7456272
--- /dev/null
+++ b/train/train-00000-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6389da6e7c85e286759cd9d30f7a9d340c48efcee80479c6113ea4a0b6f13918
+size 535781894
diff --git a/train/train-00001-of-00071.parquet b/train/train-00001-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..77e447eb679bf909810d283f0a4609a8c33031f6
--- /dev/null
+++ b/train/train-00001-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ac00e64d005b2d231654ac6b1c8977fc1545ae2a898844d8ec39c571acc186b4
+size 536832047
diff --git a/train/train-00002-of-00071.parquet b/train/train-00002-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..8e51be6b9589a14d6981955110841eed8ed7c1b6
--- /dev/null
+++ b/train/train-00002-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e6fe86891be814d5a2148543b0d5020ea71201a80b2bf6da4e6a12c17ce34474
+size 536276794
diff --git a/train/train-00003-of-00071.parquet b/train/train-00003-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..40dd2bce1e7a6effc8bea0ecbae8a16ecd61fd02
--- /dev/null
+++ b/train/train-00003-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0bbac03fe43699c3b8631f7850bfbf7bd507731ccff00a54cac080efa0e0ef1c
+size 532455925
diff --git a/train/train-00004-of-00071.parquet b/train/train-00004-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..bb4ffc5b914828724acb8304637e3f432f2da562
--- /dev/null
+++ b/train/train-00004-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6c1f3f67b2ea58c38eb41acd2add852fb24cbb8dcced8eaec8be69e29e073d30
+size 536643684
diff --git a/train/train-00005-of-00071.parquet b/train/train-00005-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..40531c00436ce48e7eb6fdca09c4d0c599d4e820
--- /dev/null
+++ b/train/train-00005-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9125229297e7e7ab59f13b9f62f59679544aa3fc7fbd05d3c000ff581c245b06
+size 536708809
diff --git a/train/train-00006-of-00071.parquet b/train/train-00006-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..06f111298ac116d932537f59adb7ec2e83a66107
--- /dev/null
+++ b/train/train-00006-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:73ac0c0c983e4176dd104e543844a9d0fe93041c28ea6ef3cacf968347a1083e
+size 536209895
diff --git a/train/train-00007-of-00071.parquet b/train/train-00007-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..907828f84e07862ae071f53f62a230bb7c2a20f2
--- /dev/null
+++ b/train/train-00007-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:162fe68e9193fef85b7eda52b91287d635a43ca5cdf38a6ef846f3970099babd
+size 536534273
diff --git a/train/train-00008-of-00071.parquet b/train/train-00008-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..46f57e7445e8e0c32d54e3b91a6e42173fdcda02
--- /dev/null
+++ b/train/train-00008-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e56d43322993649a89d8ae85cb951503da6e0616e674d863068b997cf461a2dd
+size 536470985
diff --git a/train/train-00009-of-00071.parquet b/train/train-00009-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..06445b026e15d1582a94eb7739082044bd409c0a
--- /dev/null
+++ b/train/train-00009-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dcf2990c469e505f41528dc27d4a715b091f668cd7360115dc4aa432e91977c5
+size 534245851
diff --git a/train/train-00010-of-00071.parquet b/train/train-00010-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..b948bbac156277c815213e4e22bff303628254fd
--- /dev/null
+++ b/train/train-00010-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:35ba5779540e53354ccc6087f5a82e8ab3e3d4db4b3bea946a260ce1352b51bb
+size 536169097
diff --git a/train/train-00011-of-00071.parquet b/train/train-00011-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..dc2f18cf70a59d66adc2e3cb790337e95c139a63
--- /dev/null
+++ b/train/train-00011-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7c87b4914c368ce049b21414d549d427cd78231766dbd584b3a78cb1e69f9b0c
+size 536794791
diff --git a/train/train-00012-of-00071.parquet b/train/train-00012-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..401f516f5141a624b371f9cf9383a9a5d733275c
--- /dev/null
+++ b/train/train-00012-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:808e874311efa359920d173381e2b6d74cc60edbcb2d2e6429baddb01cc44cc1
+size 536464526
diff --git a/train/train-00013-of-00071.parquet b/train/train-00013-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..ec4b7d1e1d14ffe90e7b3de360e82e0062a534bf
--- /dev/null
+++ b/train/train-00013-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0db0da829f5797d73bed9649ac86db9b35043594a23fdfe849d0efe34dcbe1c3
+size 536561454
diff --git a/train/train-00014-of-00071.parquet b/train/train-00014-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..ff92125bf14bc9dfd3fce464ef496d93c08c78e3
--- /dev/null
+++ b/train/train-00014-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:aa20a002757235881b2822ab48b2206f7b820000c6105b711fae0e4a1056e8ae
+size 536412232
diff --git a/train/train-00015-of-00071.parquet b/train/train-00015-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..f91cf007fbd7500e1db5401dce156f2fc8277373
--- /dev/null
+++ b/train/train-00015-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b84fc2331a20877dff7462dd44f250398b3e31034c9e1c5083b675e3594f722d
+size 536394744
diff --git a/train/train-00016-of-00071.parquet b/train/train-00016-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..567c49c401148c7c8b070474205e5aca1dac8199
--- /dev/null
+++ b/train/train-00016-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dd07ef15385bf142c76045d34c82caccd4ef83440b2bcc84f475a7fc4d66fa79
+size 535210373
diff --git a/train/train-00017-of-00071.parquet b/train/train-00017-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..45dfb4c062526200972a25a0ea1330bed1bbd582
--- /dev/null
+++ b/train/train-00017-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7212a52ad16825abea67a45037783cd06e15c88d9b7588ede6e375b81b6daadc
+size 535822100
diff --git a/train/train-00018-of-00071.parquet b/train/train-00018-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..fc352cbb5ee4f99f715ad4c43cefe129442f85fb
--- /dev/null
+++ b/train/train-00018-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a43c2a765e0501ed298f817dc91df5cbf88fd3d86f5f45d6a4ddfcb5e579b1b8
+size 536483673
diff --git a/train/train-00019-of-00071.parquet b/train/train-00019-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..3de8a928bfb1eb589714f9a16157153f934845b9
--- /dev/null
+++ b/train/train-00019-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b916469c81d207fd12ea195dd2ab21b70c2cf95ba4de86d2e92aa3760e11cfeb
+size 533325448
diff --git a/train/train-00020-of-00071.parquet b/train/train-00020-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..44f2429dafae7e101fad47e88c19d4f78178716a
--- /dev/null
+++ b/train/train-00020-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:397fbba642ff8e2eeace1aa7555452a209f65c29538537630f71724b6b8b7ab0
+size 536546713
diff --git a/train/train-00021-of-00071.parquet b/train/train-00021-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5258b8d9a96401111b9489b1690302b407b508b6
--- /dev/null
+++ b/train/train-00021-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5cb87aca14b23c8da3eadba18a3b395b63c19489ef72b203712f66821b92a9ea
+size 535101547
diff --git a/train/train-00022-of-00071.parquet b/train/train-00022-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..9f4566b14ca316191fc317d145b272b1aa93bc8d
--- /dev/null
+++ b/train/train-00022-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:60f6b254f230d5208befc6aaa3b070ce1e1a41a74f2126c549c89b526a4012d8
+size 533299986
diff --git a/train/train-00023-of-00071.parquet b/train/train-00023-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..39d0d47ff1de4a050b0ff4e8454307dbdf1761a6
--- /dev/null
+++ b/train/train-00023-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ef515c73aa4cca0b91bbc2d69935c0e841ac70464bcdf07d7af647d34ea5c585
+size 534853549
diff --git a/train/train-00024-of-00071.parquet b/train/train-00024-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..f7bc87ff5d7333de48834e2748d42471508e65f6
--- /dev/null
+++ b/train/train-00024-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:19c5ff403433522e21d436feb7ffc6ffeee0678019fdd386a325ac68dd397cc7
+size 535866044
diff --git a/train/train-00025-of-00071.parquet b/train/train-00025-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..74fa1237cd99d0ce92a410f4193a91b778429800
--- /dev/null
+++ b/train/train-00025-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b20ea5c8b589e03853f53ae81333cec9db73f01955d5eaf24285d9b2dcf53701
+size 533656376
diff --git a/train/train-00026-of-00071.parquet b/train/train-00026-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..d683525f3096cf3caedd6ee9cfb10747ec6c18b2
--- /dev/null
+++ b/train/train-00026-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0174d922123bfb89255a990500a596d8ab18b160262b92d043471eac721bad1f
+size 536766409
diff --git a/train/train-00027-of-00071.parquet b/train/train-00027-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..cc8a30ef3f9459a9280fcb84f3b5cf95c39c3603
--- /dev/null
+++ b/train/train-00027-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3debbb65e038be1df58468b91d7fa850c29959b08d79fd5ce7a7e14f1ca11320
+size 536786585
diff --git a/train/train-00028-of-00071.parquet b/train/train-00028-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..16682139731e3124e7f81adc05e97bcba149bdf8
--- /dev/null
+++ b/train/train-00028-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e910cc3ad2aa18cadcdb8686fc4bd76d54f6d118dc479316917e61e7fc261e94
+size 535712198
diff --git a/train/train-00029-of-00071.parquet b/train/train-00029-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5bdf55cb7b96099ff1068aad710d3274e1210f8f
--- /dev/null
+++ b/train/train-00029-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:47fd7e4f34c65fb9a6044d2ceb3d902aa44d817bf0d16b2e5243ebfa1b0c8502
+size 536281149
diff --git a/train/train-00030-of-00071.parquet b/train/train-00030-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..40ef1490e59c0110c3dd29c0400e3012c8fd3cf6
--- /dev/null
+++ b/train/train-00030-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ebee599daf984fd360e8ff5b762589087663177232d466f074420161240f7a1b
+size 534497396
diff --git a/train/train-00031-of-00071.parquet b/train/train-00031-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..06e700374bc7618964c11cbc8c7c7cd7d29844bd
--- /dev/null
+++ b/train/train-00031-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:871e9e35e8d9ba490e5c3ab815b931616f815c40231e36d5700403c75a211735
+size 536277757
diff --git a/train/train-00032-of-00071.parquet b/train/train-00032-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..8e9c11fd7900d790604aa93a4dc75ee8787c7df8
--- /dev/null
+++ b/train/train-00032-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c6df41c39c1f442e391b7e6d2bb55ca332c8b24891b1ee09721df4f153990a04
+size 536002387
diff --git a/train/train-00033-of-00071.parquet b/train/train-00033-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..c1c82c55e2126721026f693141dff6f577711041
--- /dev/null
+++ b/train/train-00033-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68eb9624ec17c66ed74cb6b32bc661515f1be4a091c2e013976e56203b7abd92
+size 535924470
diff --git a/train/train-00034-of-00071.parquet b/train/train-00034-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..46b1b18fc0ad2802120b9617ca24390f0c2c9a72
--- /dev/null
+++ b/train/train-00034-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3c29a7291e606af78fbb733a736e5939334f4d47ec4d51c9825d7bd175397dc0
+size 535358570
diff --git a/train/train-00035-of-00071.parquet b/train/train-00035-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..4945c0d4dd826d883c9ab7715a5df444c54151e3
--- /dev/null
+++ b/train/train-00035-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:142b34c9e5ab872174b38d0533ab24b53a0f601453d6dcca98669945c138e1f5
+size 536498112
diff --git a/train/train-00036-of-00071.parquet b/train/train-00036-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..9280e1a1280d115718e00f514e39c0a852b7e06b
--- /dev/null
+++ b/train/train-00036-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae559c4bdb6a538302060167cdd14a2234393575d98a9078c8cd8b512a0f6d84
+size 534624314
diff --git a/train/train-00037-of-00071.parquet b/train/train-00037-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..1fd4b9efbbb634f64fed30bd4d76efc5bc30c59d
--- /dev/null
+++ b/train/train-00037-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:45d4bb1f748e45e01f88e317cf9d2425fd5e21d88c32e105929018b2919034fc
+size 535886878
diff --git a/train/train-00038-of-00071.parquet b/train/train-00038-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..dbd3948aa4c66639b962c4ceee83b3353232b0c7
--- /dev/null
+++ b/train/train-00038-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:469b5b0e6df9ff1fb3d28f74c4f78bdaf03da91e00dfadbc46eeb88584c2ef40
+size 536886012
diff --git a/train/train-00039-of-00071.parquet b/train/train-00039-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..b52e5ed1a800fd529e2cdc3d504a5e423350346b
--- /dev/null
+++ b/train/train-00039-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1ab59136e0ecf17361ec23d828b086afcb20ac2f573f880de303da8fb6e5367a
+size 536234586
diff --git a/train/train-00040-of-00071.parquet b/train/train-00040-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5b43af8dd7249c7e298dcca770ebbf01162f4e09
--- /dev/null
+++ b/train/train-00040-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8763950453d82c99dfa973b8f2067ea94c6fb35188e22b9e09e5c65276f075b
+size 535257493
diff --git a/train/train-00041-of-00071.parquet b/train/train-00041-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..eb12fecf34afdd44b28cbb1f8a3e0125982dfe8b
--- /dev/null
+++ b/train/train-00041-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e53291c6aa718e1e438b943bed803179b674e95a4e441092ba1772eb179268ec
+size 534802937
diff --git a/train/train-00042-of-00071.parquet b/train/train-00042-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..612726d9b6ccf9139c28fbb763c7db732217840d
--- /dev/null
+++ b/train/train-00042-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:989828c8f679d45f6ed2e6133180a569874d6473b614fc621aaa7651d566e703
+size 536507869
diff --git a/train/train-00043-of-00071.parquet b/train/train-00043-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5bf79e6af99f560cb69cc20a977942e4fafc83e9
--- /dev/null
+++ b/train/train-00043-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7359e348cdf79e7e437f16609ab5c52df4238fffe45bfd82837a0a198e10067d
+size 536565409
diff --git a/train/train-00044-of-00071.parquet b/train/train-00044-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..85be8128648928ed687e8ab9f5553923e9123820
--- /dev/null
+++ b/train/train-00044-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:56a10d2f15dc72555e97b378d49a3e246aa098621546600c2370a10150d423a3
+size 534792644
diff --git a/train/train-00045-of-00071.parquet b/train/train-00045-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..14fd94f20a7c94a0a0af51b51723ba43344f684f
--- /dev/null
+++ b/train/train-00045-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f99428eddc7a8920601c5a921efb7d5bb1c366738869ffe87cec17b6dfe0ebc7
+size 535044085
diff --git a/train/train-00046-of-00071.parquet b/train/train-00046-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..a69f398e974e51eb39622da31e032f3024674676
--- /dev/null
+++ b/train/train-00046-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c7abd969186027f15f43ceab697ba783a7fd01cbb9b0a3c6f1d0d23dd202963d
+size 536807163
diff --git a/train/train-00047-of-00071.parquet b/train/train-00047-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..9944c88e3f2e0fbf107875a2aeeda505cc1a58d5
--- /dev/null
+++ b/train/train-00047-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8204860965136a2e8867036f0883f4b424727d66f3ba1452913532c6644c16ed
+size 535778027
diff --git a/train/train-00048-of-00071.parquet b/train/train-00048-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..e1ae1edca118017a79d569bb8969422a73b904d5
--- /dev/null
+++ b/train/train-00048-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6fc93f3ad64d6c8f1ed3aa53baf7402a574923de0961a65c642a6b6577ddd493
+size 536596807
diff --git a/train/train-00049-of-00071.parquet b/train/train-00049-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..6713fefdb013eebef89c1c274b33de41b5a69edd
--- /dev/null
+++ b/train/train-00049-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:80c36642d6668263730b0c61e3f2dd8ac0402aa83780d105ec24b2a5b137c5ba
+size 536494851
diff --git a/train/train-00050-of-00071.parquet b/train/train-00050-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..eca617a003223b4b6349222f780d7ed41f5925c4
--- /dev/null
+++ b/train/train-00050-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8ac30af1b8d1785e5ebdbb50811949951899e272eb8aa21d94616928bee62c9c
+size 536516980
diff --git a/train/train-00051-of-00071.parquet b/train/train-00051-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..1b4f5a16f7d76172c6de2d04e99dda3678de335c
--- /dev/null
+++ b/train/train-00051-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fae08c59958e78cc2ebc6fe180957f3639b7d621527b0084524396b12fd2ec7e
+size 534484797
diff --git a/train/train-00052-of-00071.parquet b/train/train-00052-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..7f115124366c518734c5d02b31d30419ac3825dc
--- /dev/null
+++ b/train/train-00052-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8d10efdf2c9633aba80aec414c08b1591b1e825a2bf21dda7d0b0c6fb9eab320
+size 534640101
diff --git a/train/train-00053-of-00071.parquet b/train/train-00053-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..a1552826e8f191620091d2f55f2ac60c89032402
--- /dev/null
+++ b/train/train-00053-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad0a8937a200fefad387b99344060746ab3c029b1ab7ae8b7586de2c1f9dc668
+size 536267506
diff --git a/train/train-00054-of-00071.parquet b/train/train-00054-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..3d07eab878fc8c6e6f932b3f2c010825c6e4f4fb
--- /dev/null
+++ b/train/train-00054-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:18dd159c44252159aab5431eb1a1c9e4ece7c9076dc99573841609233683cf69
+size 535769581
diff --git a/train/train-00055-of-00071.parquet b/train/train-00055-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..2979c35d95cf4747798d3cf3f148081785038ff5
--- /dev/null
+++ b/train/train-00055-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:621fa52afc792ab64c0861ba502f879b3f8d8a93e9fb6642676acb686898c026
+size 536443893
diff --git a/train/train-00056-of-00071.parquet b/train/train-00056-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..53f07346bc6270416ff99932d4bca41b3977666a
--- /dev/null
+++ b/train/train-00056-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:95ab4db1958507faf04f4d7201ebd053724721179614f8d6aba928316c507d94
+size 536087429
diff --git a/train/train-00057-of-00071.parquet b/train/train-00057-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..feeef48bdbc1d731018a29013e979f2d245b56ed
--- /dev/null
+++ b/train/train-00057-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7ddb3a29765dee64a7e979e73afb5c678965db890cff65ce6b17a823af102444
+size 534389153
diff --git a/train/train-00058-of-00071.parquet b/train/train-00058-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..24dea25f2c397837c1c1c44d1eb5bd2e336872c2
--- /dev/null
+++ b/train/train-00058-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:235ad2a99d448cf86cd650762e13a87bb62b99f029a2b709f7844ff4d13941bb
+size 534511446
diff --git a/train/train-00059-of-00071.parquet b/train/train-00059-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..f04cea2102c1ae9b97a9d3b9531ffdefd616ad99
--- /dev/null
+++ b/train/train-00059-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:53b67bf213129a7f8121901cbaf0aac2889f150335bbcf87ba23cb88e3f3e839
+size 536114762
diff --git a/train/train-00060-of-00071.parquet b/train/train-00060-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..247e6bb5e3bed6dfb75f579a6964ddd3baed4eb9
--- /dev/null
+++ b/train/train-00060-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1d49b6e78d1c54204fa6d6b28d0cd4fa895586b5a6c5e5cc8239d7e562fe168c
+size 536202177
diff --git a/train/train-00061-of-00071.parquet b/train/train-00061-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..6b7715fe5ee07ec1aa4ab3843ad68939c59ffce5
--- /dev/null
+++ b/train/train-00061-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dfde7575a31d7a95fa3465f1e6a10216b8e8439f06d798b7ec3e2d1e18032edf
+size 536705081
diff --git a/train/train-00062-of-00071.parquet b/train/train-00062-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5b469e53c76e112dff179c4a31ef11548cf28b06
--- /dev/null
+++ b/train/train-00062-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:64a3d6845ca23db9f92cb0f4b1df1327762bc3d06ce3052f71d280aa97211a9d
+size 534242706
diff --git a/train/train-00063-of-00071.parquet b/train/train-00063-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..4846b92b855f1251a901c14949b4fad43202a361
--- /dev/null
+++ b/train/train-00063-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:92b5dac3c111b99d84b2c723212598ffa22bc819c754a7b9069b768a9f06a0af
+size 536080081
diff --git a/train/train-00064-of-00071.parquet b/train/train-00064-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..6b312a8b1be079a06b81f2b0e2109cb9267f409d
--- /dev/null
+++ b/train/train-00064-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6ef351760ecde91af80a307d83a1409a53ffe0a429bc1c338c78ad0694513a48
+size 535699682
diff --git a/train/train-00065-of-00071.parquet b/train/train-00065-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..5f51b851c1134abff72cda01647c83b02969b5e4
--- /dev/null
+++ b/train/train-00065-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:98952ccd8cd8cf58873e37c0344ea5e3968d9bd2e9135a73f78c15f5171a5bb2
+size 535489808
diff --git a/train/train-00066-of-00071.parquet b/train/train-00066-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..c08326d019bae901f1bb09ab97f73a36b699565b
--- /dev/null
+++ b/train/train-00066-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed7d2851b684de8bfcfe92dc31ea8a50d370880451b766526fca877385f3dfd4
+size 536545101
diff --git a/train/train-00067-of-00071.parquet b/train/train-00067-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..711f84bec289844ca52e4224a09eefa63c22c382
--- /dev/null
+++ b/train/train-00067-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4d8e0966bf558a1f03523d6cc8f7f404d1849863960d1eccf631d4e0e25d03ac
+size 536099126
diff --git a/train/train-00068-of-00071.parquet b/train/train-00068-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..6301c3a8abaf804e57b8e5221c181040e8ea22d5
--- /dev/null
+++ b/train/train-00068-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f84879750a0dd0c5f581bdee225219d8986481c781a142de4d5398d71f0611e5
+size 536660189
diff --git a/train/train-00069-of-00071.parquet b/train/train-00069-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..640dfa6097507a6914734d7a2ecd2e3d48b42a61
--- /dev/null
+++ b/train/train-00069-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c98bc00fbeb0961818e3603608c36f45e901fdf38ef8ba012bccf7eb9a789220
+size 534672296
diff --git a/train/train-00070-of-00071.parquet b/train/train-00070-of-00071.parquet
new file mode 100644
index 0000000000000000000000000000000000000000..79768f2c1efffaead84bdcfbbaa3ae9a699d9468
--- /dev/null
+++ b/train/train-00070-of-00071.parquet
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c0537a5055bff5d22b7b84e268d22680f1be12fcc850c685c7cd61b61af1371a
+size 13837736