Datasets:
The dataset viewer is not available for this split.
Error code: FeaturesError
Exception: ParserError
Message: Error tokenizing data. C error: Expected 7 fields in line 3, saw 8
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/split/first_rows.py", line 249, in compute_first_rows_from_streaming_response
iterable_dataset = iterable_dataset._resolve_features()
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 4379, in _resolve_features
features = _infer_features_from_batch(self.with_format(None)._head())
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2661, in _head
return next(iter(self.iter(batch_size=n)))
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2839, in iter
for key, pa_table in ex_iterable.iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2377, in _iter_arrow
yield from 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/csv/csv.py", line 198, in _generate_tables
for batch_idx, df in enumerate(csv_file_reader):
~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1843, in __next__
return self.get_chunk()
~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1985, in get_chunk
return self.read(nrows=size)
~~~~~~~~~^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/pandas/io/parsers/readers.py", line 1923, in read
) = self._engine.read( # type: ignore[attr-defined]
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
nrows
^^^^^
)
^
File "/usr/local/lib/python3.14/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 7 fields in line 3, saw 8Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
π Dataset Summary
ThinkV2V-150K is a complex-prompt video editing dataset for instruction-guided video editing. It is filtered from OpenVE-HQ-1M and further processed through prompt rewriting, converting direct editing instructions into more detailed, reasoning-oriented video editing requests.
This release does not duplicate video files. The videos are hosted by OpenVE-3M. ThinkV2V-150K provides CSV metadata with rewritten prompts and OpenVE-3M-compatible relative video paths.
ποΈ File Structure
The released dataset is organized as follows:
ThinkV2V-150K/
βββ README.md
βββ csv_files/
βββ background_change.csv
βββ global_style.csv
βββ local_add.csv
βββ local_change.csv
βββ local_remove.csv
csv_files/: complex-prompt metadata for the five released editing categories.- Video files are not included in this repository. Please download them from OpenVE-3M.
π Using With OpenVE-3M
ThinkV2V-150K is intended to be used together with the extracted OpenVE-3M videos. The released training metadata is restricted to samples that can be reliably aligned to public OpenVE-3M video paths. A typical local layout is:
datasets/
βββ OpenVE-3M/
β βββ videos/
β β βββ background_change/
β β βββ global_style/
β β βββ local_add/
β β βββ local_change/
β β βββ local_remove/
β βββ csv_files/
β βββ ...
βββ ThinkV2V-150K/
βββ README.md
βββ csv_files/
βββ background_change.csv
βββ global_style.csv
βββ local_add.csv
βββ local_change.csv
βββ local_remove.csv
The video and original_video fields use the same relative-path style as OpenVE-3M:
background_change/a130108912c20457607fdcb9d880005d.mp4
global_style/b888304ee7030294ff23806c605ca138.mp4
local_change/6c7b7857b88bd5470532c7b4a2da2c4c.mp4
The training dataloader should read metadata from ThinkV2V-150K and resolve the video and original_video fields using the configured OpenVE-3M video path.
π§Ύ Data Fields
Each row in the category CSV files contains one video editing triplet:
| Field | Type | Description |
|---|---|---|
video |
path | Relative path to the edited video under the extracted OpenVE-3M videos/ directory. |
prompt |
string | Rewritten complex editing instruction. |
original_video |
path | Relative path to the source video under the extracted OpenVE-3M videos/ directory. |
The CSV files follow the OpenVE-3M metadata format and use semicolon delimiters:
video;prompt;original_video
π Data Size
| Category | Samples |
|---|---|
background_change |
24,261 |
global_style |
39,665 |
local_add |
36,214 |
local_change |
25,732 |
local_remove |
30,653 |
| Total | 156,525 |
π Example Sample
An example entry from csv_files/background_change.csv is shown below:
{
"video": "background_change/a130108912c20457607fdcb9d880005d.mp4",
"prompt": "Swap the current pool-side backdrop for a lively open woodland clearing, where tiny glowing winged insects flicker gently, overhead foliage rustles softly in a light breeze, and shifting sunbeams filter through the treetops to create moving dappled patches across the mossy forest floor. Layer in soft, distant calls of winged forest dwellers to enhance the calm, serene atmosphere, while leaving the gray-haired man and the large white arctic bear completely stationary in their positions.",
"original_video": "background_change/38fbe37b56ee0ac595ffe994d7639e4c.mp4"
}
The paths above refer to files from the extracted OpenVE-3M video archive, not files stored in this ThinkV2V-150K repository.
π― Intended Uses
ThinkV2V-150K is intended for research and training of instruction-guided video editing systems under complex prompts. Typical use cases include training or fine-tuning video editing models with reasoning-oriented editing instructions.
This release is intended for research and non-commercial use.
π» How to Load
You can load the metadata with standard Python tools such as pandas.
from pathlib import Path
import pandas as pd
openve3m_video_root = Path("datasets/OpenVE-3M/videos")
thinkv2v_root = Path("datasets/ThinkV2V-150K")
meta = pd.read_csv(thinkv2v_root / "csv_files" / "background_change.csv", sep=";")
sample = meta.iloc[0].to_dict()
edited_video = openve3m_video_root / sample["video"]
source_video = openve3m_video_root / sample["original_video"]
print(sample["prompt"])
print(edited_video)
print(source_video)
βοΈ License and Ethics
ThinkV2V-150K is derived from OpenVE-HQ-1M and OpenVE-3M and is released under CC BY-NC 4.0 for research and non-commercial use.
Users should apply the dataset responsibly and avoid using it for harmful, deceptive, privacy-violating, or otherwise abusive applications. Generated editing results are determined by model behavior and user-provided instructions.
- Downloads last month
- 72