Roboflow 100: A Rich, Multi-Domain Object Detection Benchmark
Paper • 2211.13523 • Published
Error code: StreamingRowsError
Exception: CastError
Message: Couldn't cast
text: string
image: null
label: null
to
{'image': Image(mode=None, decode=False), 'label': Value('string')}
because column names don't match
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2406, in _iter_arrow
pa_table = cast_table_to_features(pa_table, self.features)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2280, in cast_table_to_features
raise CastError(
...<3 lines>...
)
datasets.table.CastError: Couldn't cast
text: string
image: null
label: null
to
{'image': Image(mode=None, decode=False), 'label': Value('string')}
because column names don't matchNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This dataset is part of the Roboflow 100 benchmark, a diverse collection of 100 object detection datasets spanning 7 imagery domains.
| Split | Images |
|---|---|
| Train | 548 |
| Validation | 80 |
| Test | 44 |
| Total | 672 |
from libreyolo import LIBREYOLO
# Load a model
model = LIBREYOLO(model_path="libreyoloXnano.pt")
# Train on this dataset
model.train(data='path/to/data.yaml', epochs=100)
from huggingface_hub import snapshot_download
# Download the dataset
snapshot_download(
repo_id="Libre-YOLO/printed-circuit-board",
repo_type="dataset",
local_dir="./printed-circuit-board"
)
printed-circuit-board/
├── data.yaml # Dataset configuration
├── README.md # This file
├── train/
│ ├── images/ # Training images
│ └── labels/ # Training labels (YOLO format)
├── valid/
│ ├── images/ # Validation images
│ └── labels/ # Validation labels
└── test/
├── images/ # Test images (if available)
└── labels/ # Test labels
Labels are in YOLO format (one .txt file per image):
<class_id> <x_center> <y_center> <width> <height>
All coordinates are normalized to [0, 1].
If you use this dataset, please cite the Roboflow 100 benchmark:
@misc{rf100_2022,
Author = {Floriana Ciaglia and Francesco Saverio Zuppichini and Paul Guerrie and Mark McQuade and Jacob Solawetz},
Title = {Roboflow 100: A Rich, Multi-Domain Object Detection Benchmark},
Year = {2022},
Eprint = {arXiv:2211.13523},
}
This dataset is released under the CC-BY-4.0 license. Please check the original source for any additional terms.