Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot extract the features (columns) for the split 'train' of the config 'default' of the dataset.
Error code:   FeaturesError
Exception:    ParserError
Message:      Error tokenizing data. C error: Expected 1 fields in line 42, saw 2

Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 247, in compute_first_rows_from_streaming_response
                  iterable_dataset = iterable_dataset._resolve_features()
                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 4196, in _resolve_features
                  features = _infer_features_from_batch(self.with_format(None)._head())
                                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2533, in _head
                  return next(iter(self.iter(batch_size=n)))
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2711, in iter
                  for key, pa_table in ex_iterable.iter_arrow():
                                       ^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2249, in _iter_arrow
                  yield from self.ex_iterable._iter_arrow()
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 494, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 384, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/csv/csv.py", line 198, in _generate_tables
                  for batch_idx, df in enumerate(csv_file_reader):
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/readers.py", line 1843, in __next__
                  return self.get_chunk()
                         ^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/readers.py", line 1985, in get_chunk
                  return self.read(nrows=size)
                         ^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/readers.py", line 1923, in read
                  ) = self._engine.read(  # type: ignore[attr-defined]
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/pandas/io/parsers/c_parser_wrapper.py", line 234, in read
                  chunks = self._reader.read_low_memory(nrows)
                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "pandas/_libs/parsers.pyx", line 850, in pandas._libs.parsers.TextReader.read_low_memory
                File "pandas/_libs/parsers.pyx", line 905, in pandas._libs.parsers.TextReader._read_rows
                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 2061, in pandas._libs.parsers.raise_parser_error
              pandas.errors.ParserError: Error tokenizing data. C error: Expected 1 fields in line 42, saw 2

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.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

USL-Suspilne

A small-scale Ukrainian Sign Language dataset for text-to-pose research, built from publicly broadcast news clips on Suspilne Mовлення (Ukrainian public broadcaster). Each clip pairs a Ukrainian sentence with the corresponding interpreter's signing, provided as a video clip and as MediaPipe pose sequences.

Layout

usl-suspilne/
├── README.md
├── train.csv                       # 80% — model training
├── dev.csv                         # 10% — validation / early stopping
├── test.csv                        # 10% — held-out evaluation
├── features/
│   └── v00/{clip_id}.mp4           # H.264, 510×510, 30 fps, signer crop
└── poses/
    ├── mediapipe_holistic/
    │   └── v00/{clip_id}.npy       # (T, 225) — body+hands, 2D + visibility
    └── mediapipe_3d/
        └── v00/{clip_id}.npy       # (T, 150) — 50 joints × (x, y, z)

Split CSVs

Pipe-delimited. One row per clip; header included.

column meaning
name {video_id}/{clip_id} — joins to features/, poses/...
text_norm normalized Ukrainian sentence (input to text→pose models)
signer_id integer interpreter ID assigned by face clustering (0–4)

text_norm is lowercase Ukrainian with edge punctuation stripped, numerals expanded to words, and % written as відсотків.

Splits

Splits are sampled at the clip level with an 80/10/10 ratio. Every source video and every signer appears in all three splits — this is not a signer- or video-independent benchmark.

Pose formats

Both pose representations are produced by MediaPipe. Frames are aligned with the corresponding .mp4 (30 fps, T = frame count).

mediapipe_holistic

Flattened MediaPipe Holistic output, shape = (T, 225). Reshape to (T, 75, 3) to recover joints:

index range joints
[0:33] body (MediaPipe Pose landmarks)
[33:54] left hand (21 landmarks)
[54:75] right hand (21 landmarks)

Each joint is (x, y, conf) with x, y normalized to [0, 1] in frame coordinates (origin top-left). The third channel differs by joint type:

  • Body joints carry MediaPipe's visibility[0, 1] (continuous confidence).
  • Hand joints carry a placeholder — 1.0 when the hand is detected, 0.0 when it isn't (MediaPipe's hand landmarker doesn't expose a confidence value).

When a body or hand is not detected in a frame, all three values are zero for the corresponding joints. Use that to mask missing landmarks.

mediapipe_3d

3D pose lifted from the 2D Holistic output, shape = (T, 150). Reshape to (T, 50, 3) for (x, y, z):

index range joints
[0:8] upper body — Nose, Neck, R/L Shoulder, R/L Elbow, R/L Wrist
[8:29] left hand (21 landmarks)
[29:50] right hand (21 landmarks)

Coordinates are clip-relative (not pixel space): x/y are normalized per clip during 2D-to-3D lifting; z is solved under skeletal-length constraints with joint 0 (Nose) anchored at z = 0. Typical value range is roughly [-2.5, 2.5] on each axis.

Source & licensing

Source video belongs to Suspilne Mовлення (UA:PBC) and is redistributed under their terms. Pose features and split CSVs are derivative artefacts of those broadcasts. Verify redistribution rights before publishing this dataset externally.

If you use this dataset, please cite the accompanying thesis (TBD).

Statistics

Auto-generated from the dataset on disk.

split clips hours videos avg s/clip
train 2731 4.16 17 5.5
dev 342 0.50 17 5.2
test 343 0.52 17 5.4
total 3416 5.17 17 5.5
  • Total frames: 558,734
  • Signers: 6
  • Train vocabulary: 8,120 types / 29,368 tokens
  • OOV (token-level): dev 16.6%, test 18.2%
Downloads last month
15