-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathhyperparameter.yaml
More file actions
38 lines (29 loc) · 1.63 KB
/
hyperparameter.yaml
File metadata and controls
38 lines (29 loc) · 1.63 KB
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
# Python Funscript Editor hyperparameter config
# This parameter specifies how many frames are skipped and interpolated during tracking.
# Increase this parameter to improve the processing speed on slow hardware. But higher
# values result in poorer predictions!
skip_frames: 1
# Specify the window size for the calculation of the reference value for the local min
# and max search.
avg_sec_for_local_min_max_extraction: 1.9
# Specify the minimum required frames for the tracking. Wee need this parameter to
# ensure there is at leas two strokes in the tracking result.
min_frames: 120
# Shift predicted top points by given frame number. Positive values delay the position
# and negative values result in an earlier position.
shift_top_points: 0
# Shift predicted bottom points by given frame number. Positive values delay the position
# and negative values result in an earlier position.
shift_bottom_points: 0
# An fix offset to the top points (positive values move the point up and negative values
# move the point down). The offset respect the user defined upper and lower limit.
top_points_offset: 5.0
# An fix offset to the bottom points (positive values move the point up and negative values
# move the point down). The offset respect the user defined upper and lower limit.
bottom_points_offset: -15.0
# Define the top threshold. All top points greater than (max - threshold) will be set to
# the specified max value. Set 0.0 to disable this function.
top_threshold: 2.5
# Define the bottom threshold. All bottom points lower than (min + threshold) will be set to
# the specified min value. Set 0.0 to disable this function.
bottom_threshold: 2.5