-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
131 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
configs/data_juicer_recipes/data-juicer-sandbox-optimal.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# 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' |
47 changes: 47 additions & 0 deletions
47
configs/data_juicer_recipes/data-juicer-sandbox-self-evolution.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# global parameters | ||
project_name: 'Data-Juicer-recipes-T2V-evolution' | ||
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' | ||
- video_motion_score_filter: | ||
min_score: 3 | ||
max_score: 20 | ||
sampling_fps: 2 | ||
any_or_all: any | ||
- video_aesthetics_filter: | ||
hf_scorer_model: shunk031/aesthetics-predictor-v2-sac-logos-ava1-l14-linearMSE | ||
min_score: 0.418164 | ||
max_score: 1.0 | ||
frame_sampling_method: 'uniform' | ||
frame_num: 3 | ||
reduce_mode: avg | ||
any_or_all: any | ||
mem_required: '1500MB' | ||
- video_duration_filter: | ||
min_duration: 2 | ||
max_duration: 100000 | ||
any_or_all: any |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.