---
title: data-juicer-t2v-optimal-data-pool
canonical_url: "https://www.modelscope.cn/datasets/Data-Juicer/data-juicer-t2v-optimal-data-pool"
md_url: "https://www.modelscope.cn/datasets/Data-Juicer/data-juicer-t2v-optimal-data-pool.md"
repository: Data-Juicer/data-juicer-t2v-optimal-data-pool
last_updated: 2024-07-23
license: cc-by-4.0
storage_size: "13 MB"
domain:
  - language
tasks:
  - en
downloads: 97
stars: 0
---

# data-juicer-t2v-optimal-data-pool

> data-juicer-t2v-optimal-data-pool - Data-Juicer 在 ModelScope 开源的数据集。An example of the optimal text-video dataset selected from the Data-Juicer sandbox laboratory.

Data-Juicer/data-juicer-t2v-optimal-data-pool 是 ModelScope 魔搭社区上的en数据集，涉及 language 领域，存储大小 13 MB，采用 cc-by-4.0 许可。

- **Repository**: Data-Juicer/data-juicer-t2v-optimal-data-pool
- **License**: cc-by-4.0
- **Tasks**: en
- **Domain**: language
- **Storage size**: 13 MB
- **Downloads**: 97
- **Stars**: 0
- **Last updated**: 2024-07-23

Source: https://www.modelscope.cn/datasets/Data-Juicer/data-juicer-t2v-optimal-data-pool

---

# <span style="font-family: 'Courier New', monospace; font-weight: bold">Data-Juicer Sandbox: A Comprehensive Suite for Multimodal Data-Model Co-development

## Project description

The emergence of large-scale multi-modal generative models has drastically advanced artificial intelligence, introducing unprecedented levels of performance and functionality. 
However, optimizing these models remains challenging due to historically isolated paths of model-centric and data-centric developments, leading to suboptimal outcomes and inefficient resource utilization. 
In response, we present a novel sandbox suite tailored for integrated data-model co-development. This sandbox provides a comprehensive experimental platform, enabling rapid iteration and insight-driven refinement of both data and models. 
Our proposed "Probe-Analyze-Refine" workflow, validated through applications on [T2V-Turbo](https://github.com/Ji4chenLi/t2v-turbo) and achieve a new state-of-the-art on [VBench leaderboard](https://huggingface.co/spaces/Vchitect/VBench_Leaderboard) with 1.09% improvement from T2V-Turbo. Our experiment code and model are released at [Data-Juicer Sandbox](https://github.com/modelscope/data-juicer/blob/main/docs/Sandbox.md).


## Dataset Information

- The whole dataset is available [here](http://dail-wlcb.oss-cn-wulanchabu.aliyuncs.com/MM_data/our_refined_data/Data-Juicer-T2V/data_juicer_t2v_optimal_data_pool.zip) (About 227.5GB).
- Number of samples: 147,176 (Include videos and keep ~12.09% from the original dataset)
- The original dataset totals 1,217k instances from [InternVid](https://github.com/OpenGVLab/InternVideo/tree/main/Data/InternVid) (606k), [Panda-70M](https://github.com/snap-research/Panda-70M) (605k), and [MSR-VTT](https://www.microsoft.com/en-us/research/publication/msr-vtt-a-large-video-description-dataset-for-bridging-video-and-language/) (6k).


## Refining Recipe

```yaml
# global parameters
# global parameters
project_name: 'Data-Juicer-recipes-T2V-optimal'
dataset_path: '/path/to/your/dataset'  # path to your dataset directory or file
export_path: '/path/to/your/dataset.jsonl'

np: 4  # number of subprocess to process your dataset

# process schedule
# a list of several process operators with their arguments
process:
  - video_nsfw_filter:
      hf_nsfw_model: Falconsai/nsfw_image_detection
      score_threshold: 0.000195383
      frame_sampling_method: uniform
      frame_num: 3
      reduce_mode: avg
      any_or_all: any
      mem_required: '1GB'
  - video_frames_text_similarity_filter:
      hf_clip: openai/clip-vit-base-patch32
      min_score: 0.306337
      max_score: 1.0
      frame_sampling_method: uniform
      frame_num: 3
      horizontal_flip: false
      vertical_flip: false
      reduce_mode: avg
      any_or_all: any
      mem_required: '10GB'
```
