forked from yuvraj108c/ComfyUI-Rife-Tensorrt
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathload_rife_config.json
More file actions
25 lines (25 loc) · 881 Bytes
/
load_rife_config.json
File metadata and controls
25 lines (25 loc) · 881 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
{
"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"],
"default": "small",
"tooltip": "Resolution range for TensorRT engine. Small: 384-1080px, Medium: 672-1312px. Smaller ranges use less VRAM."
},
"resolution_profiles": {
"small": { "min": 384, "opt": 720, "max": 1080 },
"medium": { "min": 672, "opt": 1080, "max": 1312 }
}
}