Roboflow100
Collection
Roboflow 100 datasets for training and evaluation β’ 79 items β’ Updated
Error code: JWTInvalidSignature
Exception: InvalidSignatureError
Message: Signature verification failed
Traceback: Traceback (most recent call last):
File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
decoded = jwt.decode(
jwt=token,
...<2 lines>...
options=options,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
decoded = self.decode_complete(
jwt,
...<8 lines>...
leeway=leeway,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
decoded = self._jws.decode_complete(
jwt,
...<3 lines>...
detached_payload=detached_payload,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
self._verify_signature(
~~~~~~~~~~~~~~~~~~~~~~^
signing_input,
^^^^^^^^^^^^^^
...<4 lines>...
options=merged_options,
^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
raise InvalidSignatureError("Signature verification failed")
jwt.exceptions.InvalidSignatureError: Signature verification failedNeed 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 | 103 |
| Validation | 43 |
| Test | 16 |
| Total | 162 |
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/secondary-chains",
repo_type="dataset",
local_dir="./secondary-chains"
)
secondary-chains/
βββ 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.