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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
export default {
header: {
system: "system",
dashboard: "dashboard",
folders: "folders",
sequences: "sequences",
checkpoints: "checkpoints",
results: "results",
uprez: "uprez",
live: "live",
pix2pixhd: "pix2pixhd",
pix2pix: "pix2pix",
pix2wav: "pix2wav",
samplernn: "samplernn",
morph: "morph",
},
gpu: {
idle: "GPU Idle",
busy: "GPU Busy",
start: "Start",
restart: "Restart",
stop: "Stop",
interrupt: "Interrupt",
not_processing: "Not Processing",
processing: "Processing",
},
pix2pixhd: {
live: {
network: {
title: "Network",
view_mode: "view mode",
sequence: "sequence",
checkpoint: "checkpoint",
epoch: "epoch",
},
playback: {
title: "Playback",
position: "position",
playback_rate: "playback rate",
skip_frames: "skip frames",
fade_sequence: "fade sequence",
frame_delay: "frame delay",
},
record: {
save_frame: "Save frame",
save: "Save",
record_video: "Record video",
video_name: "Video name",
},
transition: {
title: "Transition",
period: "period",
min: "min",
max: "max",
},
recursion: {
title: "Recursion",
frac: "recursive amount",
roll: "roll amount",
axis: "roll axis",
},
sequence: {
title: "Sequence",
frac: "sequence frac",
process_frac: "process frac",
},
transform: {
title: "Transform",
rotate: "rotate",
scale: "scale",
},
clahe: {
title: "Clahe",
clip_limit: "clip limit",
},
posterize: {
title: "Posterize",
spatial_window: "spatial window",
color_window: "color window",
},
blur: {
title: "Blur",
radius: "radius",
sigma: "sigma",
},
canny: {
title: "Canny Edge Detection",
lo: "lower bound",
hi: "upper bound",
},
hsl: {
title: "Hue / Saturation",
hue: "hue",
saturation: "saturation",
luminosity: "luminosity",
}
}
}
}
|