diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..eeb7f6c4c06646d858a88b9768ee396c3ecd85ad --- /dev/null +++ b/README.md @@ -0,0 +1,391 @@ +--- +dataset_info: + features: + - name: image + dtype: image + - name: filename + dtype: string + - name: is_negative + dtype: bool + - name: corner_tl_x + dtype: float32 + - name: corner_tl_y + dtype: float32 + - name: corner_tr_x + dtype: float32 + - name: corner_tr_y + dtype: float32 + - name: corner_br_x + dtype: float32 + - name: corner_br_y + dtype: float32 + - name: corner_bl_x + dtype: float32 + - name: corner_bl_y + dtype: float32 + splits: + - name: train + num_examples: 32968 + - name: validation + num_examples: 8645 + - name: test + num_examples: 6652 +configs: + - config_name: default + data_files: + - split: train + path: train/*.parquet + - split: validation + path: val/*.parquet + - split: test + path: test/*.parquet +license: other +task_categories: + - image-segmentation + - keypoint-detection + - object-detection +tags: + - document-detection + - corner-detection + - perspective-correction + - document-scanner + - keypoint-regression +language: + - en +size_categories: + - 10K + +### Validation Set +Validation samples + +### Test Set +Test samples + +*Green polygons show the annotated document corners* + +## Dataset Description + +This dataset contains images with document corner annotations, optimized for training robust document detection models. It uses the best-performing splits from an iterative dataset cleaning process with multiple quality validation steps. + +### Key Features + +- **High Quality Annotations**: Labels refined through iterative cleaning with multiple teacher models +- **Diverse Document Types**: IDs, invoices, receipts, books, cards, and general documents +- **Negative Samples**: Includes images without documents for training robust classifiers +- **No Overlap**: Train, validation, and test splits are completely disjoint + +## Dataset Statistics + +| Split | Images | Description | +|-------|--------|-------------| +| `train` | 32,968 | Training set (cleaned iter3 + hard negatives) | +| `validation` | 8,645 | Validation set (cleaned iter3) | +| `test` | 6,652 | Held-out test set (no overlap with train/val) | +| **Total** | **48,265** | | + +## Data Sources and Licenses + +This dataset is compiled from multiple open-source datasets. **Please refer to the original dataset licenses before using this data.** + +### MIDV Dataset (ID Cards) + +Mobile Identity Document Video dataset for identity document detection and recognition. + +| Dataset | Images | License | Source | +|---------|--------|---------|--------| +| **MIDV-500** | ~9,400 | Research use | [Website](http://l3i-share.univ-lr.fr/MIDV500/) | +| **MIDV-2019** | ~1,350 | Research use | [Website](http://l3i-share.univ-lr.fr/MIDV2019/) | + +**Citation:** +```bibtex +@article{arlazarov2019midv500, + title={MIDV-500: A Dataset for Identity Documents Analysis and Recognition on Mobile Devices in Video Stream}, + author={Arlazarov, V.V. and Bulatov, K. and Chernov, T. and Arlazarov, V.L.}, + journal={Computer Optics}, + volume={43}, + number={5}, + pages={818--824}, + year={2019} +} + +@inproceedings{arlazarov2019midv2019, + title={MIDV-2019: Challenges of the modern mobile-based document OCR}, + author={Arlazarov, V.V. and Bulatov, K. and Chernov, T. and Arlazarov, V.L.}, + booktitle={ICDAR}, + year={2019} +} +``` + +### SmartDoc Dataset (Documents) + +SmartDoc Challenge dataset for document image acquisition and quality assessment. + +| Dataset | Images | License | Source | +|---------|--------|---------|--------| +| **SmartDoc** | ~1,380 | Research use | [Website](https://smartdoc.univ-lr.fr/) | + +**Citation:** +```bibtex +@inproceedings{burie2015smartdoc, + title={ICDAR 2015 Competition on Smartphone Document Capture and OCR (SmartDoc)}, + author={Burie, J.C. and Chazalon, J. and Coustaty, M. and others}, + booktitle={ICDAR}, + year={2015} +} +``` + +### COCO Dataset (Negative Samples) + +Common Objects in Context dataset used for negative samples (images without documents). + +| Dataset | Images | License | Source | +|---------|--------|---------|--------| +| **COCO val2017** | ~4,300 | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) | [Website](https://cocodataset.org/) | +| **COCO train2017** | ~11,400 | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) | [Website](https://cocodataset.org/) | + +**Note:** Excluded categories that could be confused with documents: book, laptop, tv, cell phone, keyboard, mouse, remote, clock. + +**Citation:** +```bibtex +@inproceedings{lin2014coco, + title={Microsoft COCO: Common Objects in Context}, + author={Lin, Tsung-Yi and Maire, Michael and Belongie, Serge and others}, + booktitle={ECCV}, + year={2014} +} +``` + +### Roboflow Universe (Various Documents) + +Various document datasets from Roboflow Universe community. + +| Category | Datasets | License | Source | +|----------|----------|---------|--------| +| **Documents** | document_segmentation_v2, doc_scanner, doc_rida, documento | Various (check individual) | [Roboflow Universe](https://universe.roboflow.com/) | +| **Bills/Invoices** | bill_segmentation, cs_invoice | Various (check individual) | [Roboflow Universe](https://universe.roboflow.com/) | +| **Receipts** | receipt_detection, receipt_occam, receipts_coolstuff | Various (check individual) | [Roboflow Universe](https://universe.roboflow.com/) | +| **ID Cards** | card_corner, card_4_class, id_card_skew, id_detections, idcard_jj | Various (check individual) | [Roboflow Universe](https://universe.roboflow.com/) | +| **Passports** | segment_passport | Various (check individual) | [Roboflow Universe](https://universe.roboflow.com/) | +| **Books** | book_reader, page_segmentation_tecgp, book_cmjt2 | Various (check individual) | [Roboflow Universe](https://universe.roboflow.com/) | + +**Note:** Roboflow datasets have various licenses. Please check the individual dataset pages on [Roboflow Universe](https://universe.roboflow.com/) for specific license terms. + +## Features + +| Feature | Type | Description | +|---------|------|-------------| +| `image` | Image | The document image (JPEG) | +| `filename` | string | Original filename for traceability | +| `is_negative` | bool | `True` if image contains no document | +| `corner_tl_x` | float32 | Top-left corner X coordinate (normalized 0-1) | +| `corner_tl_y` | float32 | Top-left corner Y coordinate (normalized 0-1) | +| `corner_tr_x` | float32 | Top-right corner X coordinate (normalized 0-1) | +| `corner_tr_y` | float32 | Top-right corner Y coordinate (normalized 0-1) | +| `corner_br_x` | float32 | Bottom-right corner X coordinate (normalized 0-1) | +| `corner_br_y` | float32 | Bottom-right corner Y coordinate (normalized 0-1) | +| `corner_bl_x` | float32 | Bottom-left corner X coordinate (normalized 0-1) | +| `corner_bl_y` | float32 | Bottom-left corner Y coordinate (normalized 0-1) | + +### Corner Order + +Corners are ordered **clockwise** starting from top-left: + +``` +1 (TL) -------- 2 (TR) + | | + | Document | + | | +4 (BL) -------- 3 (BR) +``` + +### Coordinate System + +- Coordinates are **normalized** to the range [0, 1] +- To convert to pixel coordinates: `pixel_x = corner_x * image_width` +- Origin (0, 0) is at the **top-left** of the image + +### Negative Samples + +Images with `is_negative=True`: +- Do not contain any document +- All corner coordinates are `null` +- Useful for training classifiers to reject non-document images + +## Usage + +### Loading the Dataset + +```python +from datasets import load_dataset + +# Load all splits +dataset = load_dataset("mapo80/DocCornerDataset") + +# Access specific splits +train_data = dataset["train"] +val_data = dataset["validation"] +test_data = dataset["test"] + +print(f"Train: {len(train_data)} samples") +print(f"Val: {len(val_data)} samples") +print(f"Test: {len(test_data)} samples") +``` + +### Iterating Over Samples + +```python +for sample in dataset["train"]: + image = sample["image"] # PIL Image + filename = sample["filename"] + + if not sample["is_negative"]: + # Get corner coordinates (normalized 0-1) + corners = [ + (sample["corner_tl_x"], sample["corner_tl_y"]), + (sample["corner_tr_x"], sample["corner_tr_y"]), + (sample["corner_br_x"], sample["corner_br_y"]), + (sample["corner_bl_x"], sample["corner_bl_y"]), + ] + + # Convert to pixel coordinates + w, h = image.size + corners_px = [(int(x * w), int(y * h)) for x, y in corners] +``` + +### Visualizing Annotations + +```python +from PIL import Image, ImageDraw + +def draw_corners(image, corners, color=(0, 255, 0), width=3): + """Draw document corners on image.""" + draw = ImageDraw.Draw(image) + w, h = image.size + + # Convert normalized to pixel coords + points = [(int(c[0] * w), int(c[1] * h)) for c in corners] + + # Draw polygon + for i in range(4): + draw.line([points[i], points[(i+1) % 4]], fill=color, width=width) + + # Draw corner circles + for p in points: + r = 5 + draw.ellipse([p[0]-r, p[1]-r, p[0]+r, p[1]+r], fill=color) + + return image + +# Example usage +sample = dataset["train"][0] +if not sample["is_negative"]: + corners = [ + (sample["corner_tl_x"], sample["corner_tl_y"]), + (sample["corner_tr_x"], sample["corner_tr_y"]), + (sample["corner_br_x"], sample["corner_br_y"]), + (sample["corner_bl_x"], sample["corner_bl_y"]), + ] + annotated = draw_corners(sample["image"].copy(), corners) + annotated.show() +``` + +### Training a Model (PyTorch Example) + +```python +import torch +from torch.utils.data import DataLoader +from datasets import load_dataset + +dataset = load_dataset("mapo80/DocCornerDataset") + +def collate_fn(batch): + images = torch.stack([transform(s["image"]) for s in batch]) + + # Stack corner coordinates (8 values per sample) + corners = [] + for s in batch: + if s["is_negative"]: + corners.append(torch.zeros(8)) + else: + corners.append(torch.tensor([ + s["corner_tl_x"], s["corner_tl_y"], + s["corner_tr_x"], s["corner_tr_y"], + s["corner_br_x"], s["corner_br_y"], + s["corner_bl_x"], s["corner_bl_y"], + ])) + + return images, torch.stack(corners) + +train_loader = DataLoader( + dataset["train"], + batch_size=32, + shuffle=True, + collate_fn=collate_fn +) +``` + +## Model Performance + +Models trained on this dataset achieve the following performance: + +| Model | Input Size | mIoU (val) | mIoU (test) | +|-------|------------|------------|-------------| +| MobileNetV2 (alpha=0.35) | 224x224 | 0.9894 | 0.9826 | +| MobileNetV2 (alpha=0.35) | 256x256 | 0.9902 | 0.9819 | + +*mIoU = Mean Intersection over Union between predicted and ground truth quadrilaterals* + +## Citation + +If you use this dataset in your research, please cite this dataset and the original source datasets: + +```bibtex +@dataset{doccornerdataset2025, + author = {mapo80}, + title = {DocCornerDataset: Document Corner Detection Dataset}, + year = {2025}, + publisher = {Hugging Face}, + url = {https://huggingface.co/datasets/mapo80/DocCornerDataset} +} +``` + +**Please also cite the original datasets used:** +- MIDV-500/MIDV-2019 (Arlazarov et al., 2019) +- SmartDoc (Burie et al., 2015) +- COCO (Lin et al., 2014) + +## License + +⚠️ **This dataset is compiled from multiple sources with different licenses.** + +| Source | License | +|--------|---------| +| MIDV-500/MIDV-2019 | Research use only | +| SmartDoc | Research use only | +| COCO | CC BY 4.0 | +| Roboflow datasets | Various (check individual datasets) | + +**Before using this dataset, please review the licenses of the original datasets:** +- [MIDV-500](http://l3i-share.univ-lr.fr/MIDV500/) +- [MIDV-2019](http://l3i-share.univ-lr.fr/MIDV2019/) +- [SmartDoc](https://smartdoc.univ-lr.fr/) +- [COCO](https://cocodataset.org/#termsofuse) +- [Roboflow Universe](https://universe.roboflow.com/) (check individual datasets) + +## Acknowledgments + +This dataset was created by combining and processing multiple open-source datasets. We thank the authors of MIDV, SmartDoc, COCO, and the Roboflow community for making their data available. + +## Related Projects + +- [DocCornerNet](https://github.com/mapo80/DocCornerNet-CoordClass) - Document corner detection model trained on this dataset diff --git a/collages/test_collage.jpg b/collages/test_collage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f5404b73d6ccc50b348f7fb7f8f1a6e77b7912de --- /dev/null +++ b/collages/test_collage.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76480b1bcc2977fede37f0c7fe6edbe5ef0a616dfa1edea450265ca0325f035 +size 191164 diff --git a/collages/train_collage.jpg b/collages/train_collage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bf50f3e67ae7a2a0e485699fe8476a0a8ced177b --- /dev/null +++ b/collages/train_collage.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2fce8e6543b6f7da9b9ffc0489ce0f5be25a8f895769ad58998f66a6782ab55 +size 251391 diff --git a/collages/val_collage.jpg b/collages/val_collage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ab5c3c2e65a25251301340c71a240b237e8d0478 --- /dev/null +++ b/collages/val_collage.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aceaf71f979821ea968b2002ec6c3e6fd180f826da5a84d698109d83aacf8fa2 +size 234459 diff --git a/dataset_info.json b/dataset_info.json new file mode 100644 index 0000000000000000000000000000000000000000..7fd327e5745a6455873c32a460fe238e630590c1 --- /dev/null +++ b/dataset_info.json @@ -0,0 +1,67 @@ +{ + "description": "Document Corner Detection Dataset - Best generalist training data from doc-scanner-dataset-rev-new with train_clean_iter3_plus_hard_full, val_clean_iter3, and test splits.", + "citation": "", + "homepage": "https://huggingface.co/datasets/mapo80/DocCornerDataset", + "license": "MIT", + "features": { + "image": { + "_type": "Image" + }, + "filename": { + "dtype": "string", + "_type": "Value" + }, + "is_negative": { + "dtype": "bool", + "_type": "Value" + }, + "corner_tl_x": { + "dtype": "float32", + "_type": "Value" + }, + "corner_tl_y": { + "dtype": "float32", + "_type": "Value" + }, + "corner_tr_x": { + "dtype": "float32", + "_type": "Value" + }, + "corner_tr_y": { + "dtype": "float32", + "_type": "Value" + }, + "corner_br_x": { + "dtype": "float32", + "_type": "Value" + }, + "corner_br_y": { + "dtype": "float32", + "_type": "Value" + }, + "corner_bl_x": { + "dtype": "float32", + "_type": "Value" + }, + "corner_bl_y": { + "dtype": "float32", + "_type": "Value" + } + }, + "splits": { + "train": { + "name": "train", + "num_examples": 32968 + }, + "validation": { + "name": "validation", + "num_examples": 8645 + }, + "test": { + "name": "test", + "num_examples": 6652 + } + }, + "dataset_name": "DocCornerDataset-BestGeneralist", + "config_name": "default" +} \ No newline at end of file diff --git a/test/data-00000.parquet b/test/data-00000.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3533dc8eb2d691b08e47793b4b6855a628511cb4 --- /dev/null +++ b/test/data-00000.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81033ccef24a1ce9550865998fd104ae944aea2d2d01aa65ec5fd9a0c1088b35 +size 187249065 diff --git a/test/data-00001.parquet b/test/data-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..74fdaaf340b05c7d72d393150a3ae0131bcd8f6d --- /dev/null +++ b/test/data-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c608f0a162f4d36735e29fa0235d72375dd9ba273a2f92a5363909d0e0ec4150 +size 207242023 diff --git a/test/data-00002.parquet b/test/data-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e98a7fa401fbfdc60ac44adaa7d6aebebcc02f7f --- /dev/null +++ b/test/data-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4ddabeb0a5b8ba0a6f309125124883cdf187504470be8eb7b9f03588fa08b7 +size 201549545 diff --git a/test/data-00003.parquet b/test/data-00003.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3efd764b64f96880de6c8b32506e97f114ce893b --- /dev/null +++ b/test/data-00003.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399440a265b897b8fc9127d8ebfb59e0e20e4c76c98ffb7ac1460d38d0290342 +size 184609604 diff --git a/test/data-00004.parquet b/test/data-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f4f02379bc40ff881733768a7be14095aefcb7b4 --- /dev/null +++ b/test/data-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08d5caeb023b8cb5843886126e09cdda6e2465517228586003b4a6abaac7fdb +size 188008278 diff --git a/test/data-00005.parquet b/test/data-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..af9105ee6ae40e5ba2d123575e0c4ca8c6c8ebdf --- /dev/null +++ b/test/data-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a9330f725dfb073a7ba08d5222770ddd206efad06997a8ef68d4c5ae8208b1 +size 187475738 diff --git a/test/data-00006.parquet b/test/data-00006.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7555a10e7f69bcd4fab7a700512e788580da7490 --- /dev/null +++ b/test/data-00006.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2000d72a5fc7045378f54430c830886a3aa018da776feec27fb5790cada8d794 +size 122265748 diff --git a/train/data-00000.parquet b/train/data-00000.parquet new file mode 100644 index 0000000000000000000000000000000000000000..4d14cdfd22aa702940a14434f4ba62274d6bc096 --- /dev/null +++ b/train/data-00000.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e90863aff16378469d556b995e6b2eb93aca7c368564238c3fc679830d1f03c +size 245581264 diff --git a/train/data-00001.parquet b/train/data-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a359b65d3ea6c71d05f558eb73a00b650625310d --- /dev/null +++ b/train/data-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c99a11dae76be5f089fb3d6187f0d6bde22f1786259a980a1ec5e04f02dd7b8 +size 225901985 diff --git a/train/data-00002.parquet b/train/data-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..09a73acf312c6abe7badab952466763dc418ddde --- /dev/null +++ b/train/data-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46f53dc47103ffe563f4927c74da0b89ee40b4a571361259dfd01a36524eed24 +size 243745136 diff --git a/train/data-00003.parquet b/train/data-00003.parquet new file mode 100644 index 0000000000000000000000000000000000000000..80874b20009ea33c46f74f27d4cbaa22b7724664 --- /dev/null +++ b/train/data-00003.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13ad406d2f1855c30cc60a271d8bbf442e73634c8a34a03fad80dac130be846c +size 235969999 diff --git a/train/data-00004.parquet b/train/data-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5ba718532d7a436265532a3648a5d767ae7c3414 --- /dev/null +++ b/train/data-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0882d181c569140ab3b16c8a319d09fd253667fe837647a1870611e0d4966463 +size 222544594 diff --git a/train/data-00005.parquet b/train/data-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..df0d347d8d379c544043a7670b99f3263c73b820 --- /dev/null +++ b/train/data-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9d89d396dcb5c4478cc2cc27c24cf0314fe3c1db0325aea0d48e65f23e7e44b +size 227663012 diff --git a/train/data-00006.parquet b/train/data-00006.parquet new file mode 100644 index 0000000000000000000000000000000000000000..659f22e399e31c0105ae3e8afe45446e6c9dafd2 --- /dev/null +++ b/train/data-00006.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:717a7f643b7ba98ac1a0276e7716ab98cd66b680ac1392ac73562b1f570ca188 +size 235616964 diff --git a/train/data-00007.parquet b/train/data-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8c47b3c5cbbd6a3533880dcb1c03cc3d08315af3 --- /dev/null +++ b/train/data-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa86d0e40b4e5cbc363b2c7631550096cca45938beaaf89f4afd1a6ee49b901 +size 239061915 diff --git a/train/data-00008.parquet b/train/data-00008.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2f7bc8dae94d673ca37501c8e6ac33fadb6ef2b4 --- /dev/null +++ b/train/data-00008.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf8ceb638e9aa9aaa1ab7c7cb33447194ca2cc8ed10f875e88bd862cf5ecf5c1 +size 249548663 diff --git a/train/data-00009.parquet b/train/data-00009.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9b366e54e7464dc177d4e756a06eea44b5f6d9d1 --- /dev/null +++ b/train/data-00009.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e71c60e7dbb0f0f1582f78b4377ab71a521f86414d847b3bb5c6b07603d4b982 +size 235663810 diff --git a/train/data-00010.parquet b/train/data-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..20161fe1b267740c3dac90c7d3bb97ae6caf9c02 --- /dev/null +++ b/train/data-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba9c404c72bcc0e1e75b409ccb64905f9c0b9c1e99ac6f09719f2aef92e8878f +size 243550141 diff --git a/train/data-00011.parquet b/train/data-00011.parquet new file mode 100644 index 0000000000000000000000000000000000000000..22d585711240a27280cd82549832223dc06ff253 --- /dev/null +++ b/train/data-00011.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0c4bbe6cfcdf2de08b893da43d67e35132a250953df08d17933bb8275084790 +size 261747503 diff --git a/train/data-00012.parquet b/train/data-00012.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0b5d22d417af2a2600d35786f26b92c592d43bb2 --- /dev/null +++ b/train/data-00012.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84e042075718eb6e1989af5733723c93b3604fa7eb5f6cf9aac6b80b8a05c062 +size 231585526 diff --git a/train/data-00013.parquet b/train/data-00013.parquet new file mode 100644 index 0000000000000000000000000000000000000000..db66f4ccc48f33a4f84cf71d7c4a859d8c026bbc --- /dev/null +++ b/train/data-00013.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ac8e897436d06ae866dfa2e106617cf6153404cd572c541c61696770c536574 +size 253029271 diff --git a/train/data-00014.parquet b/train/data-00014.parquet new file mode 100644 index 0000000000000000000000000000000000000000..556aff9a087df617090c1d2214b6b24bd7c21746 --- /dev/null +++ b/train/data-00014.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b20e7361d5a78233a3a0851ab0d88d1b21a1283af88fe28eebd23c644ea67880 +size 235838760 diff --git a/train/data-00015.parquet b/train/data-00015.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8b528ed8fae1d2d3ec744d29e9d19429ccf16d97 --- /dev/null +++ b/train/data-00015.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394d1d81338a57192a2c20378b67dcae6568ed1be92577b156211ed70fc65a46 +size 248733094 diff --git a/train/data-00016.parquet b/train/data-00016.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5b05bf8ef9db179a22398c068f6e91c4b0f0f7d2 --- /dev/null +++ b/train/data-00016.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ca4836c93a4427bfa330b1da1bc469f547eb931e71ad6ffd6b811e30587a70 +size 226313269 diff --git a/train/data-00017.parquet b/train/data-00017.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0500d410e2316d00e5740df9361908a04daed6d7 --- /dev/null +++ b/train/data-00017.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10a868d3015f0752a49c00cb55817d7d8d8355b2a4ae403a4d3bf6a552619c41 +size 221433150 diff --git a/train/data-00018.parquet b/train/data-00018.parquet new file mode 100644 index 0000000000000000000000000000000000000000..36517b8b0dbaa6bc957cdbb8b9e4dbaf47de9b16 --- /dev/null +++ b/train/data-00018.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976a731e37b3e6f375af4ff140993c14f893855b5db063a4f8723e2cc09d2f26 +size 221989703 diff --git a/train/data-00019.parquet b/train/data-00019.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e1cabf25243dba97fd98a8596a330e387000b51e --- /dev/null +++ b/train/data-00019.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b8379ae0c16149f25eed903d4a8fb1861d0c433fbe9d52f6e135cb88972442e +size 229525920 diff --git a/train/data-00020.parquet b/train/data-00020.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f48ebbc2a43161be5987f6e7b65cde28b171e570 --- /dev/null +++ b/train/data-00020.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:297810d8ce5b70423c8882cb37fef09f21dd793414be0c2a1364b6b039fa7adf +size 227941854 diff --git a/train/data-00021.parquet b/train/data-00021.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f0cfce035f2c9412c910a81ca262704ef97246f3 --- /dev/null +++ b/train/data-00021.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d23b4cc07480cb7805968fb2ac00732fe1e7c32b71019f30a1dede126b26a3c +size 219893111 diff --git a/train/data-00022.parquet b/train/data-00022.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6180d57407c4ee0220a696fa7cb562e86f567f08 --- /dev/null +++ b/train/data-00022.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e72154c7749656eb6c1cffa29347f7e2d896468d90a5d5bd695e8f8e672caa28 +size 252591570 diff --git a/train/data-00023.parquet b/train/data-00023.parquet new file mode 100644 index 0000000000000000000000000000000000000000..70c68c6626256401e9558ed51fb43255314df3e0 --- /dev/null +++ b/train/data-00023.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d4e73a0f8287af7abca137b7e2893ca35404b77f518f39a6db98f79a4151fc9 +size 242109076 diff --git a/train/data-00024.parquet b/train/data-00024.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3399188b1ba1ccfbba4f4a00c4c38528264b6245 --- /dev/null +++ b/train/data-00024.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:941dba2f5af7fabe88dbf4093d0401cfcbff2bada8b8796306221a443b45ae53 +size 231057726 diff --git a/train/data-00025.parquet b/train/data-00025.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e89a6a520613921518b83c29caddb960d307f4ca --- /dev/null +++ b/train/data-00025.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47186c85bccb424955373397bc4de30b5e27f439a695351284745eeca8e91095 +size 232546832 diff --git a/train/data-00026.parquet b/train/data-00026.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3cd19d7c42d08ec9e75368a9e501fbeafbbefc85 --- /dev/null +++ b/train/data-00026.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be2917fad544e33629a6bf9222e21361284feb0c705505ccae3f34152546b85 +size 254073214 diff --git a/train/data-00027.parquet b/train/data-00027.parquet new file mode 100644 index 0000000000000000000000000000000000000000..64c7a20f456efba886634daa57996c49e3df4cee --- /dev/null +++ b/train/data-00027.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698c3eec92fb274b64432c61fbb94542f7bfe018621a43b70b8b353d993fe337 +size 226628013 diff --git a/train/data-00028.parquet b/train/data-00028.parquet new file mode 100644 index 0000000000000000000000000000000000000000..425c8de11f78db67829cf7037ff6134ed239093e --- /dev/null +++ b/train/data-00028.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa7bf6e0ab0f3d046b9dee85fe2754336dfe37596c05671a3da15dc4f0729203 +size 233434547 diff --git a/train/data-00029.parquet b/train/data-00029.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2d5823e03c3f6a847a0c29c5061e1220206e615f --- /dev/null +++ b/train/data-00029.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a911d8374dff7a8780fc9fae61f65a4d480c76d861d6a07fb4a83f8a3a23d98c +size 221715909 diff --git a/train/data-00030.parquet b/train/data-00030.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1c475c87b6c4098fa19d9e5f6fe9e46fb229f198 --- /dev/null +++ b/train/data-00030.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f00e29035a17710eda7b60cb9e450a333d4900da20367203c123b93b273d7c1 +size 226693886 diff --git a/train/data-00031.parquet b/train/data-00031.parquet new file mode 100644 index 0000000000000000000000000000000000000000..11d6e1f4af99a8fb0bf47ab3c131aeda94ee570b --- /dev/null +++ b/train/data-00031.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22d9b0ddddb057a569cc43f0a99248d35badd25293fd86896105390e0995103 +size 249488525 diff --git a/train/data-00032.parquet b/train/data-00032.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0d1853bbf07dd6208d4140eef415c88b978c0f90 --- /dev/null +++ b/train/data-00032.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7f9e6b04324c19c97cd2ad0824704bfd7dd8f6dad688d954c0c5c618dea12e +size 224478003 diff --git a/val/data-00000.parquet b/val/data-00000.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d6a5afd16477327f77066f7efb4a775ef3928598 --- /dev/null +++ b/val/data-00000.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85c62a6cbf56668babe0402292bca59f3c713c2850bd4c82cd3b50901411e75c +size 231248858 diff --git a/val/data-00001.parquet b/val/data-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3a93038ab8585434f83d65d26085b6d62d32dbd6 --- /dev/null +++ b/val/data-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7814c04a6d94bed26687c03e483f235d96fce9e046916ebad63715c1d1af1124 +size 238458256 diff --git a/val/data-00002.parquet b/val/data-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..bd8fc1c3f4115c848bd3db22e86c73cdcda23150 --- /dev/null +++ b/val/data-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f706458f925a8bfe00d7e6101606eed5309743cfe540acd8260fa13026ebe608 +size 229311455 diff --git a/val/data-00003.parquet b/val/data-00003.parquet new file mode 100644 index 0000000000000000000000000000000000000000..ef9ee97951961fedeb7f8b86fb6161c37478bfd5 --- /dev/null +++ b/val/data-00003.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4db89560f586f20f1821f542ca52ea87a3bc61dc0905f8c3ac75a64ea3ea2cd +size 252745235 diff --git a/val/data-00004.parquet b/val/data-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7dc9b8a6625221ad64de7c4f4699c718caa9b720 --- /dev/null +++ b/val/data-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4aac8da5999ba8a7185fa41d8b6be1b958dcb068cd4711c56756f65ea5c5245 +size 245623209 diff --git a/val/data-00005.parquet b/val/data-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..86aeb5105bc4b87fa907ae7d68637a678e28d235 --- /dev/null +++ b/val/data-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79c165814d0e117af6966e625319e6b615ca71fef495bc569a9a16a25031d6d9 +size 234824591 diff --git a/val/data-00006.parquet b/val/data-00006.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d88136087943f81334edc2d4accbb86f462321e2 --- /dev/null +++ b/val/data-00006.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86079f10cf0382a3c4b4e9a4587aa236b5dc846d57ee9cb64d3dd2faefd241b4 +size 224221467 diff --git a/val/data-00007.parquet b/val/data-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0fcae439a625426342c075a7b57718ab5b08a433 --- /dev/null +++ b/val/data-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eb495cdd85429245ae8010e7b89753b40f6b784b09b5a4dfd131a16f6ad2fd5 +size 227612213 diff --git a/val/data-00008.parquet b/val/data-00008.parquet new file mode 100644 index 0000000000000000000000000000000000000000..9e461fdd2dd1e561d1961cea32cdd6536f9c3400 --- /dev/null +++ b/val/data-00008.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:471d4fbf86282ced803cb3d23d8d9e01bc0d9a76a0eb023858b088a7d3aa7589 +size 139749431