Dataset Viewer
The dataset viewer is not available for this subset.
Cannot get the split names for the config 'default' of the dataset.
Exception:    SplitsNotFoundError
Message:      The split names could not be parsed from the dataset config.
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
                  for split_generator in builder._split_generators(
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~^
                      StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/webdataset/webdataset.py", line 80, in _split_generators
                  raise ValueError(
                  ...<2 lines>...
                  )
              ValueError: The TAR archives of the dataset should be in WebDataset format, but the files in the archive don't share the same prefix or the same types.
              
              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/split_names.py", line 68, in compute_split_names_from_streaming_response
                  for split in get_dataset_split_names(
                               ~~~~~~~~~~~~~~~~~~~~~~~^
                      path=dataset,
                      ^^^^^^^^^^^^^
                      config_name=config,
                      ^^^^^^^^^^^^^^^^^^^
                      token=hf_token,
                      ^^^^^^^^^^^^^^^
                  )
                  ^
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
                  info = get_dataset_config_info(
                      path,
                  ...<6 lines>...
                      **config_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
                  raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
              datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.

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.

synth_captioning

Captioning pipeline for the synthetic PinPan datasets (enrue1893/PinPan_Train_Syn), extracted from JointGen-backup. Perspective-crop rendering happens upstream (external simulator); this bundle only covers the captioning stage: pulling pre-rendered panorama + 5 perspective clips per sample and generating structured JSON captions with a locally-served Qwen VLM (Qwen/Qwen3.6-27B).

Files

data/dataset_streaming_template/
    stream_process_pinpan_train_syn_captions_only.py   # entry point — run this
    stream_process.py                                  # generic streaming template (reference)
    README.md                                           # streaming pattern docs
data/_5traj_4view_analysis/
    pano_conditioning.py                                # provides equi2pers() (ERP -> pinhole)
qwen36_test/
    caption_qwen36_8k_5traj.py                          # caption_9view_qwen() engine
    caption_qwen36_pano_perspective_pair.py             # low-level ERP/pinhole + Qwen helpers
    vllm_serve_wrapper.py                               # `vllm serve` wrapper (GEMM kernel workaround)
    README.md                                           # vLLM server launch instructions
requirements/
    qwen36_env.txt                                      # pinned Python deps

Import chain: stream_process_pinpan_train_syn_captions_only.py -> caption_qwen36_8k_5traj.py (q5) -> caption_qwen36_pano_perspective_pair.py -> pano_conditioning.py (equi2pers).

Setup

  1. python -m venv venv && source venv/bin/activate && pip install -r requirements/qwen36_env.txt
  2. Serve the captioning model: see qwen36_test/README.md (python qwen36_test/vllm_serve_wrapper.py serve Qwen/Qwen3.6-27B --host 0.0.0.0 --port 8000 ...).
  3. Fix the hardcoded conditioning path. caption_qwen36_pano_perspective_pair.py defines:
    DEFAULT_PANO_CONDITIONING_PATH = (
        "/home/work/.local/khs/Projects/PanoWorld/cosmos_predict2/_src/predict2/utils/pano_conditioning.py"
    )
    
    That absolute path won't exist on a new machine. Point it at the copy included in this bundle (data/_5traj_4view_analysis/pano_conditioning.py), e.g. edit the constant or symlink it into place before running.
  4. Put an HF write token at data/dataset_streaming_template/.hftoken (gitignored, not included here) — used to upload results to OUTPUT_REPO. Override the input/output repos, QWEN36_TEST_DIR, VLLM_BASE_URLS, VLLM_MODEL, etc. via env vars (see the top of stream_process_pinpan_train_syn_captions_only.py).
  5. Run:
    cd data/dataset_streaming_template
    python stream_process_pinpan_train_syn_captions_only.py
    

Source: JointGen-backup (khs2001d), data/dataset_streaming_template/ and qwen36_test/.

Downloads last month
28