Dataset Preview
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: RemoteProtocolError
Message: peer closed connection without sending complete message body (received 0 bytes, expected 42)
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/httpx/_transports/default.py", line 101, in map_httpcore_exceptions
yield
File "/usr/local/lib/python3.14/site-packages/httpx/_transports/default.py", line 127, in __iter__
for part in self._httpcore_stream:
^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpcore/_sync/connection_pool.py", line 407, in __iter__
raise exc from None
File "/usr/local/lib/python3.14/site-packages/httpcore/_sync/connection_pool.py", line 403, in __iter__
for part in self._stream:
^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpcore/_sync/http11.py", line 342, in __iter__
raise exc
File "/usr/local/lib/python3.14/site-packages/httpcore/_sync/http11.py", line 334, in __iter__
for chunk in self._connection._receive_response_body(**kwargs):
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpcore/_sync/http11.py", line 203, in _receive_response_body
event = self._receive_event(timeout=timeout)
File "/usr/local/lib/python3.14/site-packages/httpcore/_sync/http11.py", line 213, in _receive_event
with map_exceptions({h11.RemoteProtocolError: RemoteProtocolError}):
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/contextlib.py", line 162, in __exit__
self.gen.throw(value)
~~~~~~~~~~~~~~^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpcore/_exceptions.py", line 14, in map_exceptions
raise to_exc(exc) from exc
httpcore.RemoteProtocolError: peer closed connection without sending complete message body (received 0 bytes, expected 42)
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 1520, in _prepare_split_single
for key, record 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/folder_based_builder/folder_based_builder.py", line 423, in _generate_examples
for sample_idx, downloaded_file in enumerate(downloaded_files):
~~~~~~~~~^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/track.py", line 49, in __iter__
for x in self.generator(*self.args):
~~~~~~~~~~~~~~^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 1430, in _iter_from_urlpaths
if xisfile(urlpath, download_config=download_config):
~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/file_utils.py", line 745, in xisfile
fs, *_ = url_to_fs(path, **storage_options)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/fsspec/core.py", line 395, in url_to_fs
fs = filesystem(protocol, **inkwargs)
File "/usr/local/lib/python3.14/site-packages/fsspec/registry.py", line 293, in filesystem
return cls(**storage_options)
File "/usr/local/lib/python3.14/site-packages/fsspec/spec.py", line 80, in __call__
obj = super().__call__(*args, **kwargs)
File "<string>", line 3, in __init__
File "/usr/local/lib/python3.14/unittest/mock.py", line 1176, in __call__
return self._mock_call(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/unittest/mock.py", line 1180, in _mock_call
return self._execute_mock_call(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/unittest/mock.py", line 1247, in _execute_mock_call
result = effect(*args, **kwargs)
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 750, in track_metadata_read_once
out = func(instance, fo=urlpath, **kwargs)
File "/usr/local/lib/python3.14/site-packages/fsspec/implementations/zip.py", line 62, in __init__
self.zip = zipfile.ZipFile(
~~~~~~~~~~~~~~~^
self.fo,
^^^^^^^^
...<3 lines>...
compresslevel=compresslevel,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/zipfile/__init__.py", line 1472, in __init__
self._RealGetContents()
~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/zipfile/__init__.py", line 1535, in _RealGetContents
endrec = _EndRecData(fp)
File "/usr/local/lib/python3.14/zipfile/__init__.py", line 375, in _EndRecData
return _EndRecData64(fpin, filesize - sizeEndCentDir, endrec)
File "/usr/local/lib/python3.14/zipfile/__init__.py", line 295, in _EndRecData64
data = fpin.read(sizeEndCentDir64Locator)
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 1194, in _fetch_range
r = http_backoff("GET", url, headers=headers, timeout=constants.HF_HUB_DOWNLOAD_TIMEOUT)
File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 559, in http_backoff
return next(
_http_backoff_base(
...<9 lines>...
)
)
File "/usr/local/lib/python3.14/site-packages/huggingface_hub/utils/_http.py", line 467, in _http_backoff_base
response = client.request(method=method, url=url, **kwargs)
File "/usr/local/lib/python3.14/site-packages/httpx/_client.py", line 825, in request
return self.send(request, auth=auth, follow_redirects=follow_redirects)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpx/_client.py", line 928, in send
raise exc
File "/usr/local/lib/python3.14/site-packages/httpx/_client.py", line 922, in send
response.read()
~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/httpx/_models.py", line 881, in read
self._content = b"".join(self.iter_bytes())
~~~~~~~~^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpx/_models.py", line 897, in iter_bytes
for raw_bytes in self.iter_raw():
~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/httpx/_models.py", line 951, in iter_raw
for raw_stream_bytes in self.stream:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpx/_client.py", line 153, in __iter__
for chunk in self._stream:
^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpx/_transports/default.py", line 126, in __iter__
with map_httpcore_exceptions():
~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/contextlib.py", line 162, in __exit__
self.gen.throw(value)
~~~~~~~~~~~~~~^^^^^^^
File "/usr/local/lib/python3.14/site-packages/httpx/_transports/default.py", line 118, in map_httpcore_exceptions
raise mapped_exc(message) from exc
httpx.RemoteProtocolError: peer closed connection without sending complete message body (received 0 bytes, expected 42)
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 1382, 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 1560, in _prepare_split_single
raise DatasetGenerationError("An error occurred while generating the dataset") from e
datasets.exceptions.DatasetGenerationError: An error occurred while generating the datasetNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
image image |
|---|
End of preview.
Bangumi Image Base of Mob Kara Hajimaru Tansaku Eiyuutan
This is the image base of bangumi Mob kara Hajimaru Tansaku Eiyuutan, we detected 44 characters, 3840 images in total. The full dataset is here.
Please note that these image bases are not guaranteed to be 100% cleaned, they may be noisy actual. If you intend to manually train models using this dataset, we recommend performing necessary preprocessing on the downloaded dataset to eliminate potential noisy samples (approximately 1% probability).
Here is the characters' preview:
| # | Images | Download | Preview 1 | Preview 2 | Preview 3 | Preview 4 | Preview 5 | Preview 6 | Preview 7 | Preview 8 |
|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1410 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 1 | 13 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 2 | 13 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 3 | 348 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 4 | 16 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 5 | 25 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 6 | 15 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 7 | 7 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
N/A |
| 8 | 87 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 9 | 11 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 10 | 94 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 11 | 15 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 12 | 19 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 13 | 15 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 14 | 276 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 15 | 26 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 16 | 248 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 17 | 224 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 18 | 12 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 19 | 7 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
N/A |
| 20 | 8 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 21 | 8 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 22 | 12 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 23 | 180 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 24 | 13 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 25 | 5 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
N/A | N/A | N/A |
| 26 | 6 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
N/A | N/A |
| 27 | 53 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 28 | 13 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 29 | 8 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 30 | 387 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 31 | 11 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 32 | 12 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 33 | 14 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 34 | 16 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 35 | 7 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
N/A |
| 36 | 7 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
N/A |
| 37 | 7 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
N/A |
| 38 | 8 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 39 | 32 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 40 | 9 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 41 | 26 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| 42 | 20 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| noise | 97 | Download | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
- Downloads last month
- 1,167





















































































































































































































































































































































