Dataset Viewer
Duplicate
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
version: string
truncation: null
padding: null
added_tokens: list<item: struct<id: int64, special: bool, content: string, single_word: bool, lstrip: bool, rstrip (... 26 chars omitted)
  child 0, item: struct<id: int64, special: bool, content: string, single_word: bool, lstrip: bool, rstrip: bool, nor (... 14 chars omitted)
      child 0, id: int64
      child 1, special: bool
      child 2, content: string
      child 3, single_word: bool
      child 4, lstrip: bool
      child 5, rstrip: bool
      child 6, normalized: bool
normalizer: struct<type: string, clean_text: bool, handle_chinese_chars: bool, strip_accents: null, lowercase: b (... 4 chars omitted)
  child 0, type: string
  child 1, clean_text: bool
  child 2, handle_chinese_chars: bool
  child 3, strip_accents: null
  child 4, lowercase: bool
pre_tokenizer: struct<type: string>
  child 0, type: string
post_processor: struct<type: string, single: list<item: struct<SpecialToken: struct<id: string, type_id: int64>, Seq (... 348 chars omitted)
  child 0, type: string
  child 1, single: list<item: struct<SpecialToken: struct<id: string, type_id: int64>, Sequence: struct<id: string, typ (... 14 chars omitted)
      child 0, item: struct<SpecialToken: struct<id: string, type_id: int64>, Sequence: struct<id: string, type_id: int64 (... 2 chars omitted)
          child 0, SpecialToken: struct<id: string, type_id: int64>
              child 0, id: string
              child 1, type_id: int64
          child 1, Sequence: stru
...
##門: int64
      child 30495, ##間: int64
      child 30496, ##阝: int64
      child 30497, ##阿: int64
      child 30498, ##陳: int64
      child 30499, ##陽: int64
      child 30500, ##雄: int64
      child 30501, ##青: int64
      child 30502, ##面: int64
      child 30503, ##風: int64
      child 30504, ##食: int64
      child 30505, ##香: int64
      child 30506, ##馬: int64
      child 30507, ##高: int64
      child 30508, ##龍: int64
      child 30509, ##龸: int64
      child 30510, ##fi: int64
      child 30511, ##fl: int64
      child 30512, ##!: int64
      child 30513, ##(: int64
      child 30514, ##): int64
      child 30515, ##,: int64
      child 30516, ##-: int64
      child 30517, ##.: int64
      child 30518, ##/: int64
      child 30519, ##:: int64
      child 30520, ##?: int64
      child 30521, ##~: int64
itemInfoEntries: struct<9D749A46-ADA0-43CA-B5C2-8E722B91F41E: struct<author: string, description: string, name: strin (... 128 chars omitted)
  child 0, 9D749A46-ADA0-43CA-B5C2-8E722B91F41E: struct<author: string, description: string, name: string, path: string>
      child 0, author: string
      child 1, description: string
      child 2, name: string
      child 3, path: string
  child 1, D545B13F-2D5E-4CFB-BFF1-C10E9EFD70DA: struct<author: string, description: string, name: string, path: string>
      child 0, author: string
      child 1, description: string
      child 2, name: string
      child 3, path: string
fileFormatVersion: string
rootModelIdentifier: string
to
{'fileFormatVersion': Value('string'), 'itemInfoEntries': {'9D749A46-ADA0-43CA-B5C2-8E722B91F41E': {'author': Value('string'), 'description': Value('string'), 'name': Value('string'), 'path': Value('string')}, 'D545B13F-2D5E-4CFB-BFF1-C10E9EFD70DA': {'author': Value('string'), 'description': Value('string'), 'name': Value('string'), 'path': Value('string')}}, 'rootModelIdentifier': 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 478, 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 2818, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2355, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ~~~~~~~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2380, 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 2369, in table_cast
                  return cast_table_to_schema(table, schema)
                File "/usr/local/lib/python3.14/site-packages/datasets/table.py", line 2297, in cast_table_to_schema
                  raise CastError(
                  ...<3 lines>...
                  )
              datasets.table.CastError: Couldn't cast
              version: string
              truncation: null
              padding: null
              added_tokens: list<item: struct<id: int64, special: bool, content: string, single_word: bool, lstrip: bool, rstrip (... 26 chars omitted)
                child 0, item: struct<id: int64, special: bool, content: string, single_word: bool, lstrip: bool, rstrip: bool, nor (... 14 chars omitted)
                    child 0, id: int64
                    child 1, special: bool
                    child 2, content: string
                    child 3, single_word: bool
                    child 4, lstrip: bool
                    child 5, rstrip: bool
                    child 6, normalized: bool
              normalizer: struct<type: string, clean_text: bool, handle_chinese_chars: bool, strip_accents: null, lowercase: b (... 4 chars omitted)
                child 0, type: string
                child 1, clean_text: bool
                child 2, handle_chinese_chars: bool
                child 3, strip_accents: null
                child 4, lowercase: bool
              pre_tokenizer: struct<type: string>
                child 0, type: string
              post_processor: struct<type: string, single: list<item: struct<SpecialToken: struct<id: string, type_id: int64>, Seq (... 348 chars omitted)
                child 0, type: string
                child 1, single: list<item: struct<SpecialToken: struct<id: string, type_id: int64>, Sequence: struct<id: string, typ (... 14 chars omitted)
                    child 0, item: struct<SpecialToken: struct<id: string, type_id: int64>, Sequence: struct<id: string, type_id: int64 (... 2 chars omitted)
                        child 0, SpecialToken: struct<id: string, type_id: int64>
                            child 0, id: string
                            child 1, type_id: int64
                        child 1, Sequence: stru
              ...
              ##門: int64
                    child 30495, ##間: int64
                    child 30496, ##阝: int64
                    child 30497, ##阿: int64
                    child 30498, ##陳: int64
                    child 30499, ##陽: int64
                    child 30500, ##雄: int64
                    child 30501, ##青: int64
                    child 30502, ##面: int64
                    child 30503, ##風: int64
                    child 30504, ##食: int64
                    child 30505, ##香: int64
                    child 30506, ##馬: int64
                    child 30507, ##高: int64
                    child 30508, ##龍: int64
                    child 30509, ##龸: int64
                    child 30510, ##fi: int64
                    child 30511, ##fl: int64
                    child 30512, ##!: int64
                    child 30513, ##(: int64
                    child 30514, ##): int64
                    child 30515, ##,: int64
                    child 30516, ##-: int64
                    child 30517, ##.: int64
                    child 30518, ##/: int64
                    child 30519, ##:: int64
                    child 30520, ##?: int64
                    child 30521, ##~: int64
              itemInfoEntries: struct<9D749A46-ADA0-43CA-B5C2-8E722B91F41E: struct<author: string, description: string, name: strin (... 128 chars omitted)
                child 0, 9D749A46-ADA0-43CA-B5C2-8E722B91F41E: struct<author: string, description: string, name: string, path: string>
                    child 0, author: string
                    child 1, description: string
                    child 2, name: string
                    child 3, path: string
                child 1, D545B13F-2D5E-4CFB-BFF1-C10E9EFD70DA: struct<author: string, description: string, name: string, path: string>
                    child 0, author: string
                    child 1, description: string
                    child 2, name: string
                    child 3, path: string
              fileFormatVersion: string
              rootModelIdentifier: string
              to
              {'fileFormatVersion': Value('string'), 'itemInfoEntries': {'9D749A46-ADA0-43CA-B5C2-8E722B91F41E': {'author': Value('string'), 'description': Value('string'), 'name': Value('string'), 'path': Value('string')}, 'D545B13F-2D5E-4CFB-BFF1-C10E9EFD70DA': {'author': Value('string'), 'description': Value('string'), 'name': Value('string'), 'path': Value('string')}}, 'rootModelIdentifier': Value('string')}
              because column names don't match

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.

No dataset card yet

Downloads last month
15