Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed
Error code:   DatasetGenerationError
Exception:    HfHubHTTPError
Message:      Client error '404 Not Found' for url 'https://hf-hub-lfs-us-east-1.s3.us-east-1.amazonaws.com/repos/4b/8c/4b8c7e0d7e94f2489e4b29275cfeafe22ee6656e556e8c8898bd46967f12de97/43b3982d81b7c482d7b8a88e98ccb309799d201223d03c5bedf405e1a2c5de0c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA2JU7TKAQLC2QXPN7%2F20260628%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260628T112348Z&X-Amz-Expires=3600&X-Amz-Signature=f98e24f74b7de2a1b50951d52c3263e49a15abcb35b276f72da0023af06c6b8e&X-Amz-SignedHeaders=host&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27metadata.csv%3B%20filename%3D%22metadata.csv%22%3B&response-content-type=text%2Fcsv&x-amz-checksum-mode=ENABLED&x-id=GetObject'
For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404

<?xml version="1.0" encoding="UTF-8"?>
<Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>repos/4b/8c/4b8c7e0d7e94f2489e4b29275cfeafe22ee6656e556e8c8898bd46967f12de97/43b3982d81b7c482d7b8a88e98ccb309799d201223d03c5bedf405e1a2c5de0c</Key><RequestId>895SN8X7F8KSC9S0</RequestId><HostId>3OFZ1odt6QXCJZ4zSQKdm6Jsp3MCkgNw3HNvIBIk9wE00Ao57jSlM/XQzQzWRZS4g4mXpMwcsAbh+UsdjggTaf7SL8of8Cdj</HostId></Error>
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 761, in hf_raise_for_status
                  response.raise_for_status()
                  ~~~~~~~~~~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/httpx/_models.py", line 829, in raise_for_status
                  raise HTTPStatusError(message, request=request, response=self)
              httpx.HTTPStatusError: Client error '404 Not Found' for url 'https://hf-hub-lfs-us-east-1.s3.us-east-1.amazonaws.com/repos/4b/8c/4b8c7e0d7e94f2489e4b29275cfeafe22ee6656e556e8c8898bd46967f12de97/43b3982d81b7c482d7b8a88e98ccb309799d201223d03c5bedf405e1a2c5de0c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA2JU7TKAQLC2QXPN7%2F20260628%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260628T112348Z&X-Amz-Expires=3600&X-Amz-Signature=f98e24f74b7de2a1b50951d52c3263e49a15abcb35b276f72da0023af06c6b8e&X-Amz-SignedHeaders=host&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27metadata.csv%3B%20filename%3D%22metadata.csv%22%3B&response-content-type=text%2Fcsv&x-amz-checksum-mode=ENABLED&x-id=GetObject'
              For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1816, in _prepare_split_single
                  for key, table in generator:
                                    ^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 613, in wrapped
                  for item in generator(*args, **kwargs):
                              ~~~~~~~~~^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/csv/csv.py", line 196, in _generate_tables
                  csv_file_reader = pd.read_csv(file, iterator=True, dtype=dtype, **self.config.pd_read_csv_kwargs)
                File "/usr/local/lib/python3.14/site-packages/datasets/streaming.py", line 73, in wrapper
                  return function(*args, download_config=download_config, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 1279, in xpandas_read_csv
                  return pd.read_csv(xopen(filepath_or_buffer, "rb", download_config=download_config), **kwargs)
                         ~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1026, in read_csv
                  return _read(filepath_or_buffer, kwds)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 620, in _read
                  parser = TextFileReader(filepath_or_buffer, **kwds)
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1620, in __init__
                  self._engine = self._make_engine(f, self.engine)
                                 ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1898, in _make_engine
                  return mapping[engine](f, **self.options)
                         ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 93, in __init__
                  self._reader = parsers.TextReader(src, **kwds)
                                 ~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
                File "pandas/_libs/parsers.pyx", line 574, in pandas._libs.parsers.TextReader.__cinit__
                File "pandas/_libs/parsers.pyx", line 663, in pandas._libs.parsers.TextReader._get_header
                File "pandas/_libs/parsers.pyx", line 874, in pandas._libs.parsers.TextReader._tokenize_rows
                File "pandas/_libs/parsers.pyx", line 891, in pandas._libs.parsers.TextReader._check_tokenize_status
                File "pandas/_libs/parsers.pyx", line 2053, in pandas._libs.parsers.raise_parser_error
                File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 844, in read_with_retries
                  out = read(*args, **kwargs)
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 732, in track_read
                  out = f_read(*args, **kwargs)
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_file_system.py", line 1238, in read
                  return super().read(length)
                         ~~~~~~~~~~~~^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/fsspec/spec.py", line 1846, in read
                  out = self.cache._fetch(self.loc, self.loc + length)
                File "/usr/local/lib/python3.14/site-packages/fsspec/caching.py", line 189, in _fetch
                  self.cache = self.fetcher(start, end)  # new block replaces old
                               ~~~~~~~~~~~~^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/hf_file_system.py", line 1195, in _fetch_range
                  hf_raise_for_status(r)
                  ~~~~~~~~~~~~~~~~~~~^^^
                File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 877, in hf_raise_for_status
                  raise _format(HfHubHTTPError, str(e), response) from e
              huggingface_hub.errors.HfHubHTTPError: Client error '404 Not Found' for url 'https://hf-hub-lfs-us-east-1.s3.us-east-1.amazonaws.com/repos/4b/8c/4b8c7e0d7e94f2489e4b29275cfeafe22ee6656e556e8c8898bd46967f12de97/43b3982d81b7c482d7b8a88e98ccb309799d201223d03c5bedf405e1a2c5de0c?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIA2JU7TKAQLC2QXPN7%2F20260628%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260628T112348Z&X-Amz-Expires=3600&X-Amz-Signature=f98e24f74b7de2a1b50951d52c3263e49a15abcb35b276f72da0023af06c6b8e&X-Amz-SignedHeaders=host&response-content-disposition=inline%3B%20filename%2A%3DUTF-8%27%27metadata.csv%3B%20filename%3D%22metadata.csv%22%3B&response-content-type=text%2Fcsv&x-amz-checksum-mode=ENABLED&x-id=GetObject'
              For more information check: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/404
              
              <?xml version="1.0" encoding="UTF-8"?>
              <Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Key>repos/4b/8c/4b8c7e0d7e94f2489e4b29275cfeafe22ee6656e556e8c8898bd46967f12de97/43b3982d81b7c482d7b8a88e98ccb309799d201223d03c5bedf405e1a2c5de0c</Key><RequestId>895SN8X7F8KSC9S0</RequestId><HostId>3OFZ1odt6QXCJZ4zSQKdm6Jsp3MCkgNw3HNvIBIk9wE00Ao57jSlM/XQzQzWRZS4g4mXpMwcsAbh+UsdjggTaf7SL8of8Cdj</HostId></Error>
              
              The above exception was the direct cause of the following exception:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1369, in compute_config_parquet_and_info_response
                  parquet_operations, partial, estimated_dataset_info = stream_convert_to_parquet(
                                                                        ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      builder, max_dataset_size_bytes=max_dataset_size_bytes
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 948, in stream_convert_to_parquet
                  builder._prepare_split(split_generator=splits_generators[split], file_format="parquet")
                  ~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1683, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ~~~~~~~~~~~~~~~~~~~~~~~~~~^
                      gen_kwargs=gen_kwargs, job_id=job_id, **_prepare_split_args
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  ):
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/builder.py", line 1869, in _prepare_split_single
                  raise DatasetGenerationError("An error occurred while generating the dataset") from e
              datasets.exceptions.DatasetGenerationError: An error occurred while generating the dataset

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

file_name
string
label_file
string
num_objects
int64
class_ids
string
class_names
string
bboxes_yolo
string
images/0/IMG_00001.jpg
labels/0/IMG_00001.txt
1
2
Car
[{"class_id":2,"x_center":0.60078125,"y_center":0.51953125,"width":0.7984375,"height":0.9578125}]
images/0/IMG_00002.jpg
labels/0/IMG_00002.txt
1
2
Car
[{"class_id":2,"x_center":0.60078125,"y_center":0.51953125,"width":0.7984375,"height":0.9578125}]
images/0/IMG_00003.jpg
labels/0/IMG_00003.txt
2
2
Car
[{"class_id":2,"x_center":0.4703125,"y_center":0.37890625,"width":0.69375,"height":0.7578125},{"class_id":2,"x_center":0.446875,"y_center":0.41875,"width":0.7375,"height":0.8171875}]
images/0/IMG_00004.jpg
labels/0/IMG_00004.txt
1
2
Car
[{"class_id":2,"x_center":0.47734375,"y_center":0.50390625,"width":0.6296875,"height":0.7484375}]
images/0/IMG_00005.jpg
labels/0/IMG_00005.txt
1
2
Car
[{"class_id":2,"x_center":0.5,"y_center":0.53203125,"width":0.7921875,"height":0.646875}]
images/0/IMG_00006.jpg
labels/0/IMG_00006.txt
1
2
Car
[{"class_id":2,"x_center":0.56015625,"y_center":0.47890625,"width":0.8796875,"height":0.9578125}]
images/0/IMG_00007.jpg
labels/0/IMG_00007.txt
1
2
Car
[{"class_id":2,"x_center":0.60625,"y_center":0.46171875,"width":0.71875,"height":0.8875}]
images/0/IMG_00008.jpg
labels/0/IMG_00008.txt
1
2
Car
[{"class_id":2,"x_center":0.60625,"y_center":0.46171875,"width":0.71875,"height":0.8875}]
images/0/IMG_00009.jpg
labels/0/IMG_00009.txt
1
11
Manhole
[{"class_id":11,"x_center":0.290625,"y_center":0.2375,"width":0.246875,"height":0.2796875}]
images/0/IMG_00010.jpg
labels/0/IMG_00010.txt
1
11
Manhole
[{"class_id":11,"x_center":0.203125,"y_center":0.40625,"width":0.140625,"height":0.4796875}]
images/0/IMG_00011.jpg
labels/0/IMG_00011.txt
1
2
Car
[{"class_id":2,"x_center":0.51484375,"y_center":0.44921875,"width":0.8359375,"height":0.7515625}]
images/0/IMG_00012.jpg
labels/0/IMG_00012.txt
1
2
Car
[{"class_id":2,"x_center":0.51484375,"y_center":0.44921875,"width":0.8359375,"height":0.7515625}]
images/0/IMG_00013.jpg
labels/0/IMG_00013.txt
1
2
Car
[{"class_id":2,"x_center":0.6421875,"y_center":0.46328125,"width":0.496875,"height":0.6484375}]
images/0/IMG_00014.jpg
labels/0/IMG_00014.txt
1
2
Car
[{"class_id":2,"x_center":0.6421875,"y_center":0.46328125,"width":0.496875,"height":0.6484375}]
images/0/IMG_00015.jpg
labels/0/IMG_00015.txt
1
2
Car
[{"class_id":2,"x_center":0.50234375,"y_center":0.48515625,"width":0.625,"height":0.940625}]
images/0/IMG_00016.jpg
labels/0/IMG_00016.txt
1
2
Car
[{"class_id":2,"x_center":0.50234375,"y_center":0.48515625,"width":0.625,"height":0.940625}]
images/0/IMG_00017.jpg
labels/0/IMG_00017.txt
1
2
Car
[{"class_id":2,"x_center":0.553125,"y_center":0.4328125,"width":0.7640625,"height":0.665625}]
images/0/IMG_00018.jpg
labels/0/IMG_00018.txt
1
2
Car
[{"class_id":2,"x_center":0.553125,"y_center":0.4328125,"width":0.7640625,"height":0.665625}]
images/0/IMG_00019.jpg
labels/0/IMG_00019.txt
1
2
Car
[{"class_id":2,"x_center":0.4296875,"y_center":0.55390625,"width":0.7625,"height":0.825}]
images/0/IMG_00020.jpg
labels/0/IMG_00020.txt
1
2
Car
[{"class_id":2,"x_center":0.4296875,"y_center":0.55390625,"width":0.7625,"height":0.825}]
images/0/IMG_00021.jpg
labels/0/IMG_00021.txt
1
2
Car
[{"class_id":2,"x_center":0.47890625,"y_center":0.521875,"width":0.646875,"height":0.6453125}]
images/0/IMG_00022.jpg
labels/0/IMG_00022.txt
1
2
Car
[{"class_id":2,"x_center":0.4453125,"y_center":0.6390625,"width":0.5203125,"height":0.5828125}]
images/0/IMG_00023.jpg
labels/0/IMG_00023.txt
1
13
Guard rail
[{"class_id":13,"x_center":0.6425781234375,"y_center":0.9973773765624999,"width":0.2275390625,"height":0.464139015625}]
images/0/IMG_00024.jpg
labels/0/IMG_00024.txt
1
13
Guard rail
[{"class_id":13,"x_center":0.6425781234375,"y_center":0.9973773765624999,"width":0.2275390625,"height":0.464139015625}]
images/0/IMG_00025.jpg
labels/0/IMG_00025.txt
1
13
Guard rail
[{"class_id":13,"x_center":0.197265625,"y_center":0.44719011875000003,"width":0.4912109375,"height":0.9960736140625001}]
images/0/IMG_00026.jpg
labels/0/IMG_00026.txt
1
2
Car
[{"class_id":2,"x_center":0.5015625,"y_center":0.58125,"width":0.75390625,"height":0.48359375}]
images/0/IMG_00027.jpg
labels/0/IMG_00027.txt
1
2
Car
[{"class_id":2,"x_center":0.47109375,"y_center":0.4109375,"width":0.71796875,"height":0.67265625}]
images/0/IMG_00028.jpg
labels/0/IMG_00028.txt
1
2
Car
[{"class_id":2,"x_center":0.47109375,"y_center":0.4109375,"width":0.71875,"height":0.6734375}]
images/0/IMG_00029.jpg
labels/0/IMG_00029.txt
1
2
Car
[{"class_id":2,"x_center":0.51015625,"y_center":0.5953125,"width":0.775,"height":0.7828125}]
images/0/IMG_00030.jpg
labels/0/IMG_00030.txt
1
2
Car
[{"class_id":2,"x_center":0.51015625,"y_center":0.5953125,"width":0.775,"height":0.7828125}]
images/0/IMG_00031.jpg
labels/0/IMG_00031.txt
1
2
Car
[{"class_id":2,"x_center":0.5703125,"y_center":0.54609375,"width":0.78125,"height":0.575}]
images/0/IMG_00032.jpg
labels/0/IMG_00032.txt
1
2
Car
[{"class_id":2,"x_center":0.55390625,"y_center":0.49375,"width":0.7328125,"height":0.828125}]
images/0/IMG_00033.jpg
labels/0/IMG_00033.txt
1
2
Car
[{"class_id":2,"x_center":0.55390625,"y_center":0.49375,"width":0.7328125,"height":0.828125}]
images/0/IMG_00034.jpg
labels/0/IMG_00034.txt
1
13
Guard rail
[{"class_id":13,"x_center":1.0,"y_center":0.4680502984375,"width":0.9873046875,"height":0.48239167031249996}]
images/0/IMG_00035.jpg
labels/0/IMG_00035.txt
1
13
Guard rail
[{"class_id":13,"x_center":1.0,"y_center":0.475967578125,"width":0.99030854375,"height":0.48691561562499996}]
images/0/IMG_00036.jpg
labels/0/IMG_00036.txt
1
13
Guard rail
[{"class_id":13,"x_center":1.0,"y_center":0.4745463984375,"width":0.9903694968750001,"height":0.4854255796875}]
images/0/IMG_00037.jpg
labels/0/IMG_00037.txt
1
13
Guard rail
[{"class_id":13,"x_center":1.0,"y_center":0.4680502984375,"width":0.9873046875,"height":0.48239167031249996}]
images/0/IMG_00038.jpg
labels/0/IMG_00038.txt
1
13
Guard rail
[{"class_id":13,"x_center":1.0,"y_center":0.4680502984375,"width":0.9873046875,"height":0.48239167031249996}]
images/0/IMG_00039.jpg
labels/0/IMG_00039.txt
1
13
Guard rail
[{"class_id":13,"x_center":1.0,"y_center":0.4680502984375,"width":0.9873046875,"height":0.48239167031249996}]
images/0/IMG_00040.jpg
labels/0/IMG_00040.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.5296875,"y_center":0.74140625,"width":0.38828125,"height":0.5171875}]
images/0/IMG_00041.jpg
labels/0/IMG_00041.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.5296875,"y_center":0.74140625,"width":0.38828125,"height":0.5171875}]
images/0/IMG_00042.jpg
labels/0/IMG_00042.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.5296875,"y_center":0.74140625,"width":0.38828125,"height":0.5171875}]
images/0/IMG_00043.jpg
labels/0/IMG_00043.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.5,"y_center":0.7640625,"width":0.53984375,"height":0.38125}]
images/0/IMG_00044.jpg
labels/0/IMG_00044.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.5,"y_center":0.7640625,"width":0.53984375,"height":0.38125}]
images/0/IMG_00045.jpg
labels/0/IMG_00045.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.5,"y_center":0.7640625,"width":0.53984375,"height":0.38125}]
images/0/IMG_00046.jpg
labels/0/IMG_00046.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.50546875,"y_center":0.69140625,"width":0.84375,"height":0.53828125}]
images/0/IMG_00047.jpg
labels/0/IMG_00047.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.50546875,"y_center":0.69140625,"width":0.84375,"height":0.53828125}]
images/0/IMG_00048.jpg
labels/0/IMG_00048.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.50546875,"y_center":0.69140625,"width":0.84375,"height":0.53828125}]
images/0/IMG_00049.jpg
labels/0/IMG_00049.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.51875,"y_center":0.753125,"width":0.5015625,"height":0.475}]
images/0/IMG_00050.jpg
labels/0/IMG_00050.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.51875,"y_center":0.753125,"width":0.5015625,"height":0.475}]
images/0/IMG_00051.jpg
labels/0/IMG_00051.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.51875,"y_center":0.753125,"width":0.5015625,"height":0.475}]
images/0/IMG_00052.jpg
labels/0/IMG_00052.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.534375,"y_center":0.75703125,"width":0.609375,"height":0.48046875}]
images/0/IMG_00053.jpg
labels/0/IMG_00053.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.534375,"y_center":0.75703125,"width":0.609375,"height":0.48046875}]
images/0/IMG_00054.jpg
labels/0/IMG_00054.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.534375,"y_center":0.75703125,"width":0.609375,"height":0.48046875}]
images/0/IMG_00055.jpg
labels/0/IMG_00055.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.48671875,"y_center":0.7765625,"width":0.3578125,"height":0.365625}]
images/0/IMG_00056.jpg
labels/0/IMG_00056.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.48671875,"y_center":0.7765625,"width":0.3578125,"height":0.365625}]
images/0/IMG_00057.jpg
labels/0/IMG_00057.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.48671875,"y_center":0.7765625,"width":0.3578125,"height":0.365625}]
images/0/IMG_00058.jpg
labels/0/IMG_00058.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.853125,"width":0.35859375,"height":0.259375}]
images/0/IMG_00059.jpg
labels/0/IMG_00059.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.853125,"width":0.35859375,"height":0.259375}]
images/0/IMG_00060.jpg
labels/0/IMG_00060.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.853125,"width":0.35859375,"height":0.259375}]
images/0/IMG_00061.jpg
labels/0/IMG_00061.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.55703125,"y_center":0.775,"width":0.5,"height":0.415625}]
images/0/IMG_00062.jpg
labels/0/IMG_00062.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.55703125,"y_center":0.775,"width":0.5,"height":0.415625}]
images/0/IMG_00063.jpg
labels/0/IMG_00063.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.55703125,"y_center":0.775,"width":0.5,"height":0.415625}]
images/0/IMG_00064.jpg
labels/0/IMG_00064.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.52265625,"y_center":0.74140625,"width":0.65703125,"height":0.4984375}]
images/0/IMG_00065.jpg
labels/0/IMG_00065.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.52265625,"y_center":0.74140625,"width":0.65703125,"height":0.4984375}]
images/0/IMG_00066.jpg
labels/0/IMG_00066.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.52265625,"y_center":0.74140625,"width":0.65703125,"height":0.4984375}]
images/0/IMG_00067.jpg
labels/0/IMG_00067.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.4703125,"y_center":0.8171875,"width":0.53125,"height":0.3484375}]
images/0/IMG_00068.jpg
labels/0/IMG_00068.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.4703125,"y_center":0.8171875,"width":0.53125,"height":0.3484375}]
images/0/IMG_00069.jpg
labels/0/IMG_00069.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.4703125,"y_center":0.8171875,"width":0.53125,"height":0.3484375}]
images/0/IMG_00070.jpg
labels/0/IMG_00070.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.50390625,"y_center":0.86328125,"width":0.68828125,"height":0.27265625}]
images/0/IMG_00071.jpg
labels/0/IMG_00071.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.50390625,"y_center":0.86328125,"width":0.68828125,"height":0.27265625}]
images/0/IMG_00072.jpg
labels/0/IMG_00072.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.50390625,"y_center":0.86328125,"width":0.68828125,"height":0.27265625}]
images/0/IMG_00073.jpg
labels/0/IMG_00073.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.46640625,"y_center":0.79140625,"width":0.4546875,"height":0.3921875}]
images/0/IMG_00074.jpg
labels/0/IMG_00074.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.46640625,"y_center":0.79140625,"width":0.4546875,"height":0.3921875}]
images/0/IMG_00075.jpg
labels/0/IMG_00075.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.46640625,"y_center":0.79140625,"width":0.4546875,"height":0.3921875}]
images/0/IMG_00076.jpg
labels/0/IMG_00076.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.49609375,"y_center":0.80546875,"width":0.39453125,"height":0.353125}]
images/0/IMG_00077.jpg
labels/0/IMG_00077.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.49609375,"y_center":0.80546875,"width":0.39453125,"height":0.353125}]
images/0/IMG_00078.jpg
labels/0/IMG_00078.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.49609375,"y_center":0.80546875,"width":0.39453125,"height":0.353125}]
images/0/IMG_00079.jpg
labels/0/IMG_00079.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.4828125,"y_center":0.83046875,"width":0.44296875,"height":0.32734375}]
images/0/IMG_00080.jpg
labels/0/IMG_00080.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.4828125,"y_center":0.83046875,"width":0.44296875,"height":0.32734375}]
images/0/IMG_00081.jpg
labels/0/IMG_00081.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.4828125,"y_center":0.83046875,"width":0.44296875,"height":0.32734375}]
images/0/IMG_00082.jpg
labels/0/IMG_00082.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.49921875,"y_center":0.75859375,"width":0.45625,"height":0.459375}]
images/0/IMG_00083.jpg
labels/0/IMG_00083.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.49921875,"y_center":0.75859375,"width":0.45625,"height":0.459375}]
images/0/IMG_00084.jpg
labels/0/IMG_00084.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.49921875,"y_center":0.75859375,"width":0.45625,"height":0.459375}]
images/0/IMG_00085.jpg
labels/0/IMG_00085.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.8421875,"width":0.37109375,"height":0.315625}]
images/0/IMG_00086.jpg
labels/0/IMG_00086.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.8421875,"width":0.37109375,"height":0.315625}]
images/0/IMG_00087.jpg
labels/0/IMG_00087.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.8421875,"width":0.37109375,"height":0.315625}]
images/0/IMG_00088.jpg
labels/0/IMG_00088.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47890625,"y_center":0.74609375,"width":0.6375,"height":0.48046875}]
images/0/IMG_00089.jpg
labels/0/IMG_00089.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47890625,"y_center":0.74609375,"width":0.6375,"height":0.48046875}]
images/0/IMG_00090.jpg
labels/0/IMG_00090.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47890625,"y_center":0.74609375,"width":0.6375,"height":0.48046875}]
images/0/IMG_00091.jpg
labels/0/IMG_00091.txt
4
21
Plant Pot
[{"class_id":21,"x_center":0.21953125,"y_center":0.57578125,"width":0.41171875,"height":0.653125},{"class_id":21,"x_center":0.53515625,"y_center":0.43984375,"width":0.40390625,"height":0.5359375},{"class_id":21,"x_center":0.5171875,"y_center":0.74609375,"width":0.34140625,"height":0.43046875},{"class_id":21,"x_center":...
images/0/IMG_00092.jpg
labels/0/IMG_00092.txt
4
21
Plant Pot
[{"class_id":21,"x_center":0.21953125,"y_center":0.57578125,"width":0.41171875,"height":0.653125},{"class_id":21,"x_center":0.53515625,"y_center":0.43984375,"width":0.40390625,"height":0.5359375},{"class_id":21,"x_center":0.5171875,"y_center":0.74609375,"width":0.34140625,"height":0.43046875},{"class_id":21,"x_center":...
images/0/IMG_00093.jpg
labels/0/IMG_00093.txt
4
21
Plant Pot
[{"class_id":21,"x_center":0.21953125,"y_center":0.57578125,"width":0.41171875,"height":0.653125},{"class_id":21,"x_center":0.53515625,"y_center":0.43984375,"width":0.40390625,"height":0.5359375},{"class_id":21,"x_center":0.5171875,"y_center":0.74609375,"width":0.34140625,"height":0.43046875},{"class_id":21,"x_center":...
images/0/IMG_00094.jpg
labels/0/IMG_00094.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.471875,"y_center":0.81796875,"width":0.446875,"height":0.36328125}]
images/0/IMG_00095.jpg
labels/0/IMG_00095.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.471875,"y_center":0.81796875,"width":0.446875,"height":0.36328125}]
images/0/IMG_00096.jpg
labels/0/IMG_00096.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.471875,"y_center":0.81796875,"width":0.446875,"height":0.36328125}]
images/0/IMG_00097.jpg
labels/0/IMG_00097.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.746875,"width":0.53515625,"height":0.47890625}]
images/0/IMG_00098.jpg
labels/0/IMG_00098.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.746875,"width":0.53515625,"height":0.47890625}]
images/0/IMG_00099.jpg
labels/0/IMG_00099.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.47421875,"y_center":0.746875,"width":0.53515625,"height":0.47890625}]
images/0/IMG_00100.jpg
labels/0/IMG_00100.txt
1
21
Plant Pot
[{"class_id":21,"x_center":0.57109375,"y_center":0.7453125,"width":0.721875,"height":0.44765625}]
End of preview.

ROD-Dataset: Real-Time Obstacle Detection for Smartphone-Based Assistive Vision

Total downloads

24,326-image, 25-class YOLO dataset for obstacle detection

This dataset is the data product of our Real-Time Obstacle Detection (ROD) project at Amirkabir University of Technology, Tehran. The project addresses two related public-safety problems on the city sidewalk: the limited situational awareness of people living with visual impairments, and the elevated collision and fall risk for pedestrians who walk while looking at their phones. The deployed system runs an optimized YOLOv8n detector directly on a mid-range Android phone, pairs it with ARCore for monocular distance estimation, and delivers feedback as Text-to-Speech for visually impaired users and as vibration cues for distracted ones. The whole pipeline is built to run on consumer hardware, so no LiDAR, depth camera, or external sensor is required.

The release contains 24,326 annotated images and 40,195 bounding boxes across 25 obstacle categories, split 19,186 / 3,511 / 1,629 into train, validation, and test. Annotations follow the standard YOLO Darknet TXT format (one line per box, normalized coordinates), and the class-index mapping is fixed in data.yaml. The 25 classes cover vehicles (Car, Bus, Truck, Motorcycle, Bike), street users (Person, Dog), built-environment elements (Building, Tree, Stairs, Manhole, Guard rail, Pedestrian crosswalk, Road), and the kinds of street furniture that general-purpose detectors typically miss in practice (Dustbin, Bench, Chair, Plant Pot, Electrical Pole, Electrical Box, Bicycle Rack, Traffic Cone, Traffic Barrel, Traffic Sign, Fire Hydrant). Files are numbered sequentially from IMG_00001.jpg to IMG_24326.jpg, with each image paired to a same-stem .txt label.

The dataset was built in two parallel tracks. First, we integrated twenty-six publicly available collections from Roboflow Universe (full reference list in the paper) and unified their taxonomies into a single 25-class schema scoped to what a phone-carrying pedestrian actually encounters; class indices were reconciled by hand across sources because the same object name often maps to different IDs in the originals. Second, we collected our own street-level imagery in Canadian and Iranian cities to cover scenes and street-furniture variants that the public Roboflow sources under-represent, then annotated those images using CVAT for the bounding-box drawing pass and Roboflow workflows for preprocessing, augmentation, version control, and YOLO-format export. Image–label pairing was verified end-to-end after the merge, and we deliberately preserved variety in lighting, weather, viewing height, and region rather than over-fitting to a single capture setup. The resulting distribution is long-tailed and reflects the realities of urban scenes: Person, Car, and Manhole are heavily represented, while rarer but safety-relevant classes such as Bicycle Rack and Fire Hydrant are kept on purpose so that compact detectors can still learn them.

Dataset Structure

.
├── data.yaml                 # YOLO config: paths, nc=25, class names
├── class_distribution.csv    # Per-class bbox counts (train / valid / test / total)
├── images_manifest.csv       # Per-image: split, filenames, num_objects, classes
├── train/
│   ├── images/IMG_00001.jpg .. IMG_19186.jpg
│   ├── labels/IMG_00001.txt .. IMG_19186.txt
│   └── metadata.csv          # HF Dataset Viewer index for this split
├── test/
│   ├── images/IMG_19187.jpg .. IMG_20815.jpg
│   ├── labels/IMG_19187.txt .. IMG_20815.txt
│   └── metadata.csv
└── valid/
    ├── images/IMG_20816.jpg .. IMG_24326.jpg
    ├── labels/IMG_20816.txt .. IMG_24326.txt
    └── metadata.csv

Data Fields

Each row in a split's metadata.csv contains:

  • file_name — relative path to the image inside the split folder
  • label_file — relative path to the matching YOLO label
  • num_objects — total bounding boxes in the image
  • class_ids — comma-separated list of unique class IDs present
  • class_names — comma-separated list of unique class names present
  • bboxes_yolo — JSON array of all boxes; each box is {class_id, x_center, y_center, width, height} with coordinates normalized to [0, 1]

YOLO label files (labels/IMG_*.txt) follow the standard Darknet format: one box per line, class_id x_center y_center width height, all coordinates normalized.

Splits

Split Images Bounding Boxes
train 19,186 32,251
valid 3,511 5,572
test 1,629 2,372
Total 24,326 40,195

Classes

ID Name ID Name ID Name
0 Bike 9 Dustbin 18 Traffic Cone
1 Building 10 Dog 19 Fire hydrant
2 Car 11 Manhole 20 Traffic Barrel
3 Person 12 Tree 21 Plant Pot
4 Stairs 13 Guard rail 22 Electrical Box
5 Traffic sign 14 Pedestrian crosswalk 23 Chair
6 Electrical Pole 15 Truck 24 Bicycle Rack
7 Road 16 Bus
8 Motorcycle 17 Bench

Per-class counts per split are in class_distribution.csv.

Usage

Train a YOLOv8 model directly

pip install ultralytics
# Edit data.yaml paths if needed, then:
yolo detect train data=data.yaml model=yolov8n.pt epochs=100 imgsz=640

Load with the datasets library

from datasets import load_dataset

ds = load_dataset("Abtinz/Obstacle-Detection-Dataset-YOLO")
print(ds)
# DatasetDict with 'train', 'validation', 'test' splits
# Each row has file_name, num_objects, class_ids, class_names, bboxes_yolo

Source Data

  • Public sources: twenty-six obstacle / street-object collections aggregated from Roboflow Universe; full citation list is in the accompanying paper.
  • In-house capture: original sidewalk-level imagery photographed by the project team in Canadian and Iranian cities to cover scenes that public sources under-represent (regional street furniture, mixed signage conventions, and varied weather).
  • Annotation pipeline: in-house images were boxed in CVAT; preprocessing, augmentation, dataset versioning, and YOLO-format export were managed through Roboflow workflows.

Citation

If you use this dataset, please cite the accompanying paper:

@article{zandi2026rod,
  title   = {Real-Time Obstacle Detection and Distance Estimation on Smartphones for Visually Impaired and Distracted Pedestrians},
  author  = {Abtin Zandi, Ariyan Azami, Parsa Abbasian, Sarvin Nami, Roza Ganjipour, Bardia Sabbagh Kermani, and Dr. Hamed Farbeh},
  affiliation = {Department of Computer Engineering and Information Technology, Amirkabir University of Technology, Tehran, Iran},
  year    = {2026}
}

License

Released under the MIT License. The integrated Roboflow Universe sources retain their original licenses.

Contact

Issues, missed labels, and collaboration inquiries are welcome.

Downloads last month
8