forked from silveroxides/ComfyUI_RIFE_TensorRT_Auto
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathload_rife_config.json
More file actions
26 lines (26 loc) · 965 Bytes
/
load_rife_config.json
File metadata and controls
26 lines (26 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"model": {
"options": [
"rife47_ensemble_True_scale_1_sim",
"rife48_ensemble_True_scale_1_sim",
"rife49_ensemble_True_scale_1_sim"
],
"default": "rife49_ensemble_True_scale_1_sim",
"tooltip": "RIFE models for video frame interpolation. These models have been tested with tensorrt. Loaded from config."
},
"precision": {
"options": ["fp16", "fp32"],
"default": "fp16",
"tooltip": "Precision to build the tensorrt engines. Loaded from config."
},
"resolution_profile": {
"options": ["small", "medium", "large"],
"default": "small",
"tooltip": "Resolution range for TensorRT engine. Small: 384-1080px, Medium: 672-1312px, Large: 720-1920px. Smaller ranges use less VRAM."
},
"resolution_profiles": {
"small": { "min": 384, "opt": 720, "max": 1080 },
"medium": { "min": 672, "opt": 1080, "max": 1312 },
"large": { "min": 720, "opt": 1440, "max": 1920 }
}
}