Dataset Viewer
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code: StreamingRowsError
Exception: CastError
Message: Couldn't cast
status: string
class: string
source_repo_path: string
source_member: string
source_ref: string
jpg_member: string
source_sha256: string
jpeg_sha256: string
source_bytes: int64
jpeg_bytes: int64
width: int64
height: int64
had_alpha: bool
n_pages: int64
encoder: string
note: string
performance: struct<batch_images: int64, hf_xet_high_performance: bool, logical_cpu: int64, vips_concurrency_per_ (... 30 chars omitted)
child 0, batch_images: int64
child 1, hf_xet_high_performance: bool
child 2, logical_cpu: int64
child 3, vips_concurrency_per_worker: int64
child 4, workers: int64
target_visibility: string
source_repo: string
source_revision: string
target_repo: string
generated_at_unix: double
completed: bool
conversion: struct<alpha_policy: string, crop: bool, fallback_encoder: string, images_per_full_shard: int64, jpe (... 160 chars omitted)
child 0, alpha_policy: string
child 1, crop: bool
child 2, fallback_encoder: string
child 3, images_per_full_shard: int64
child 4, jpeg_quality: int64
child 5, primary_encoder: string
child 6, resize: bool
child 7, source_format: string
child 8, tail_shard_may_be_smaller: bool
child 9, target_format: string
child 10, zip_compression: string
classes: struct<nsfl: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: (... 340 chars omitted)
child 0, nsfl: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: int64, next_ (... 37 chars omitted)
child 0, completed: bool
child 1, converted_committed: int64
child 2, entry_idx: int64
child 3, failed_committed: int64
child 4, next_shard: int64
child 5, source_item_idx: int64
child 1, nsfw: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: int64, next_ (... 37 chars omitted)
child 0, completed: bool
child 1, converted_committed: int64
child 2, entry_idx: int64
child 3, failed_committed: int64
child 4, next_shard: int64
child 5, source_item_idx: int64
child 2, sfw: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: int64, next_ (... 37 chars omitted)
child 0, completed: bool
child 1, converted_committed: int64
child 2, entry_idx: int64
child 3, failed_committed: int64
child 4, next_shard: int64
child 5, source_item_idx: int64
to
{'classes': {'nsfl': {'completed': Value('bool'), 'converted_committed': Value('int64'), 'entry_idx': Value('int64'), 'failed_committed': Value('int64'), 'next_shard': Value('int64'), 'source_item_idx': Value('int64')}, 'nsfw': {'completed': Value('bool'), 'converted_committed': Value('int64'), 'entry_idx': Value('int64'), 'failed_committed': Value('int64'), 'next_shard': Value('int64'), 'source_item_idx': Value('int64')}, 'sfw': {'completed': Value('bool'), 'converted_committed': Value('int64'), 'entry_idx': Value('int64'), 'failed_committed': Value('int64'), 'next_shard': Value('int64'), 'source_item_idx': Value('int64')}}, 'completed': Value('bool'), 'conversion': {'alpha_policy': Value('string'), 'crop': Value('bool'), 'fallback_encoder': Value('string'), 'images_per_full_shard': Value('int64'), 'jpeg_quality': Value('int64'), 'primary_encoder': Value('string'), 'resize': Value('bool'), 'source_format': Value('string'), 'tail_shard_may_be_smaller': Value('bool'), 'target_format': Value('string'), 'zip_compression': Value('string')}, 'generated_at_unix': Value('float64'), 'performance': {'batch_images': Value('int64'), 'hf_xet_high_performance': Value('bool'), 'logical_cpu': Value('int64'), 'vips_concurrency_per_worker': Value('int64'), 'workers': Value('int64')}, 'source_repo': Value('string'), 'source_revision': Value('string'), 'target_repo': Value('string'), 'target_visibility': 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 2398, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 343, in _generate_tables
self._cast_table(pa_table, json_field_paths=json_field_paths),
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 132, in _cast_table
pa_table = table_cast(pa_table, self.info.features.arrow_schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2378, in table_cast
return cast_table_to_schema(table, schema)
File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2306, in cast_table_to_schema
raise CastError(
...<3 lines>...
)
datasets.table.CastError: Couldn't cast
status: string
class: string
source_repo_path: string
source_member: string
source_ref: string
jpg_member: string
source_sha256: string
jpeg_sha256: string
source_bytes: int64
jpeg_bytes: int64
width: int64
height: int64
had_alpha: bool
n_pages: int64
encoder: string
note: string
performance: struct<batch_images: int64, hf_xet_high_performance: bool, logical_cpu: int64, vips_concurrency_per_ (... 30 chars omitted)
child 0, batch_images: int64
child 1, hf_xet_high_performance: bool
child 2, logical_cpu: int64
child 3, vips_concurrency_per_worker: int64
child 4, workers: int64
target_visibility: string
source_repo: string
source_revision: string
target_repo: string
generated_at_unix: double
completed: bool
conversion: struct<alpha_policy: string, crop: bool, fallback_encoder: string, images_per_full_shard: int64, jpe (... 160 chars omitted)
child 0, alpha_policy: string
child 1, crop: bool
child 2, fallback_encoder: string
child 3, images_per_full_shard: int64
child 4, jpeg_quality: int64
child 5, primary_encoder: string
child 6, resize: bool
child 7, source_format: string
child 8, tail_shard_may_be_smaller: bool
child 9, target_format: string
child 10, zip_compression: string
classes: struct<nsfl: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: (... 340 chars omitted)
child 0, nsfl: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: int64, next_ (... 37 chars omitted)
child 0, completed: bool
child 1, converted_committed: int64
child 2, entry_idx: int64
child 3, failed_committed: int64
child 4, next_shard: int64
child 5, source_item_idx: int64
child 1, nsfw: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: int64, next_ (... 37 chars omitted)
child 0, completed: bool
child 1, converted_committed: int64
child 2, entry_idx: int64
child 3, failed_committed: int64
child 4, next_shard: int64
child 5, source_item_idx: int64
child 2, sfw: struct<completed: bool, converted_committed: int64, entry_idx: int64, failed_committed: int64, next_ (... 37 chars omitted)
child 0, completed: bool
child 1, converted_committed: int64
child 2, entry_idx: int64
child 3, failed_committed: int64
child 4, next_shard: int64
child 5, source_item_idx: int64
to
{'classes': {'nsfl': {'completed': Value('bool'), 'converted_committed': Value('int64'), 'entry_idx': Value('int64'), 'failed_committed': Value('int64'), 'next_shard': Value('int64'), 'source_item_idx': Value('int64')}, 'nsfw': {'completed': Value('bool'), 'converted_committed': Value('int64'), 'entry_idx': Value('int64'), 'failed_committed': Value('int64'), 'next_shard': Value('int64'), 'source_item_idx': Value('int64')}, 'sfw': {'completed': Value('bool'), 'converted_committed': Value('int64'), 'entry_idx': Value('int64'), 'failed_committed': Value('int64'), 'next_shard': Value('int64'), 'source_item_idx': Value('int64')}}, 'completed': Value('bool'), 'conversion': {'alpha_policy': Value('string'), 'crop': Value('bool'), 'fallback_encoder': Value('string'), 'images_per_full_shard': Value('int64'), 'jpeg_quality': Value('int64'), 'primary_encoder': Value('string'), 'resize': Value('bool'), 'source_format': Value('string'), 'tail_shard_may_be_smaller': Value('bool'), 'target_format': Value('string'), 'zip_compression': Value('string')}, 'generated_at_unix': Value('float64'), 'performance': {'batch_images': Value('int64'), 'hf_xet_high_performance': Value('bool'), 'logical_cpu': Value('int64'), 'vips_concurrency_per_worker': Value('int64'), 'workers': Value('int64')}, 'source_repo': Value('string'), 'source_revision': Value('string'), 'target_repo': Value('string'), 'target_visibility': 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.
No dataset card yet
- Downloads last month
- 510