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
repo: string
pr_number: int64
pr_title: string
pr_state: string
pr_author: string
base_branch: string
head_branch: string
created_at: timestamp[s]
merged_at: timestamp[s]
base_ref_oid: string
head_ref_oid: string
base_commit: struct<oid: string, message: string, authoredDate: timestamp[s], author: struct<name: string, email: (... 38 chars omitted)
  child 0, oid: string
  child 1, message: string
  child 2, authoredDate: timestamp[s]
  child 3, author: struct<name: string, email: string, user: struct<login: string>>
      child 0, name: string
      child 1, email: string
      child 2, user: struct<login: string>
          child 0, login: string
rounds: list<item: struct<round_index: int64, review_state: string, review_author: string, submitted_at: tim (... 1905 chars omitted)
  child 0, item: struct<round_index: int64, review_state: string, review_author: string, submitted_at: timestamp[s],  (... 1893 chars omitted)
      child 0, round_index: int64
      child 1, review_state: string
      child 2, review_author: string
      child 3, submitted_at: timestamp[s]
      child 4, feedback_type: string
      child 5, review_author_association: string
      child 6, inline_comments: list<item: struct<id: string, body: string, path: string, originalLine: int64, line: null, originalS (... 497 chars omitted)
          child 0, item: struct<id: string, body: string, path: string, originalLine: int64, line: null, originalStartLine: i (... 485 chars omitted)
              child 0, id:
...
atedAt: timestamp[s], author: struct<login: string>>
      child 0, id: string
      child 1, body: string
      child 2, createdAt: timestamp[s]
      child 3, author: struct<login: string>
          child 0, login: string
closed_by_pr: int64
comment_count: int64
title: string
number: int64
sub_issues: list<item: null>
  child 0, item: null
closed_at: timestamp[s]
comment_rounds: list<item: struct<comments: list<item: struct<id: string, body: string, createdAt: timestamp[s], upd (... 55 chars omitted)
  child 0, item: struct<comments: list<item: struct<id: string, body: string, createdAt: timestamp[s], updatedAt: tim (... 43 chars omitted)
      child 0, comments: list<item: struct<id: string, body: string, createdAt: timestamp[s], updatedAt: timestamp[s], author (... 25 chars omitted)
          child 0, item: struct<id: string, body: string, createdAt: timestamp[s], updatedAt: timestamp[s], author: struct<lo (... 13 chars omitted)
              child 0, id: string
              child 1, body: string
              child 2, createdAt: timestamp[s]
              child 3, updatedAt: timestamp[s]
              child 4, author: struct<login: string>
                  child 0, login: string
labels: list<item: null>
  child 0, item: null
author_login: string
body: string
issue_age_at_pr_days: null
state: string
link_type: string
parent_issues: list<item: null>
  child 0, item: null
milestone: null
will_close: bool
issue_was_open_at_pr: null
resolution: string
sub_issue_count: int64
to
{'number': Value('int64'), 'title': Value('string'), 'body': Value('string'), 'state': Value('string'), 'created_at': Value('timestamp[s]'), 'closed_at': Value('timestamp[s]'), 'author_login': Value('string'), 'comment_rounds': List({'comments': List({'id': Value('string'), 'body': Value('string'), 'createdAt': Value('timestamp[s]'), 'updatedAt': Value('timestamp[s]'), 'author': {'login': Value('string')}})}), 'resolution': Value('string'), 'closed_by_pr': Value('int64'), 'link_type': Value('string'), 'will_close': Value('bool'), 'comment_count': Value('int64'), 'issue_age_at_pr_days': Value('null'), 'issue_was_open_at_pr': Value('null'), 'labels': List(Value('null')), 'milestone': Value('null'), 'sub_issues': List(Value('null')), 'sub_issue_count': Value('int64'), 'parent_issues': List(Value('null'))}
because column names don't match
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 149, 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 129, 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 489, 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
              repo: string
              pr_number: int64
              pr_title: string
              pr_state: string
              pr_author: string
              base_branch: string
              head_branch: string
              created_at: timestamp[s]
              merged_at: timestamp[s]
              base_ref_oid: string
              head_ref_oid: string
              base_commit: struct<oid: string, message: string, authoredDate: timestamp[s], author: struct<name: string, email: (... 38 chars omitted)
                child 0, oid: string
                child 1, message: string
                child 2, authoredDate: timestamp[s]
                child 3, author: struct<name: string, email: string, user: struct<login: string>>
                    child 0, name: string
                    child 1, email: string
                    child 2, user: struct<login: string>
                        child 0, login: string
              rounds: list<item: struct<round_index: int64, review_state: string, review_author: string, submitted_at: tim (... 1905 chars omitted)
                child 0, item: struct<round_index: int64, review_state: string, review_author: string, submitted_at: timestamp[s],  (... 1893 chars omitted)
                    child 0, round_index: int64
                    child 1, review_state: string
                    child 2, review_author: string
                    child 3, submitted_at: timestamp[s]
                    child 4, feedback_type: string
                    child 5, review_author_association: string
                    child 6, inline_comments: list<item: struct<id: string, body: string, path: string, originalLine: int64, line: null, originalS (... 497 chars omitted)
                        child 0, item: struct<id: string, body: string, path: string, originalLine: int64, line: null, originalStartLine: i (... 485 chars omitted)
                            child 0, id:
              ...
              atedAt: timestamp[s], author: struct<login: string>>
                    child 0, id: string
                    child 1, body: string
                    child 2, createdAt: timestamp[s]
                    child 3, author: struct<login: string>
                        child 0, login: string
              closed_by_pr: int64
              comment_count: int64
              title: string
              number: int64
              sub_issues: list<item: null>
                child 0, item: null
              closed_at: timestamp[s]
              comment_rounds: list<item: struct<comments: list<item: struct<id: string, body: string, createdAt: timestamp[s], upd (... 55 chars omitted)
                child 0, item: struct<comments: list<item: struct<id: string, body: string, createdAt: timestamp[s], updatedAt: tim (... 43 chars omitted)
                    child 0, comments: list<item: struct<id: string, body: string, createdAt: timestamp[s], updatedAt: timestamp[s], author (... 25 chars omitted)
                        child 0, item: struct<id: string, body: string, createdAt: timestamp[s], updatedAt: timestamp[s], author: struct<lo (... 13 chars omitted)
                            child 0, id: string
                            child 1, body: string
                            child 2, createdAt: timestamp[s]
                            child 3, updatedAt: timestamp[s]
                            child 4, author: struct<login: string>
                                child 0, login: string
              labels: list<item: null>
                child 0, item: null
              author_login: string
              body: string
              issue_age_at_pr_days: null
              state: string
              link_type: string
              parent_issues: list<item: null>
                child 0, item: null
              milestone: null
              will_close: bool
              issue_was_open_at_pr: null
              resolution: string
              sub_issue_count: int64
              to
              {'number': Value('int64'), 'title': Value('string'), 'body': Value('string'), 'state': Value('string'), 'created_at': Value('timestamp[s]'), 'closed_at': Value('timestamp[s]'), 'author_login': Value('string'), 'comment_rounds': List({'comments': List({'id': Value('string'), 'body': Value('string'), 'createdAt': Value('timestamp[s]'), 'updatedAt': Value('timestamp[s]'), 'author': {'login': Value('string')}})}), 'resolution': Value('string'), 'closed_by_pr': Value('int64'), 'link_type': Value('string'), 'will_close': Value('bool'), 'comment_count': Value('int64'), 'issue_age_at_pr_days': Value('null'), 'issue_was_open_at_pr': Value('null'), 'labels': List(Value('null')), 'milestone': Value('null'), 'sub_issues': List(Value('null')), 'sub_issue_count': Value('int64'), 'parent_issues': List(Value('null'))}
              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
5,065