-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathhyperparameter.yaml
More file actions
105 lines (75 loc) · 3.82 KB
/
hyperparameter.yaml
File metadata and controls
105 lines (75 loc) · 3.82 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
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
100
101
102
103
104
105
# Python Funscript Editor hyperparameter config
###########
# General #
###########
# 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: 2.0
# Specify the maximum deviation for a max point in percent
local_max_delta_in_percent: 0.1
# Specify the maximum deviation for a min point in percent
local_min_delta_in_percent: 0.1
# 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: 90
# threshold value tor get additional change points by comparing second derivative with the rolling standard deviation and given threshold
changepoint_detection_threshold: 1.2
# threshold value in milliseconds to merge additional change points
additional_changepoints_merge_threshold_in_ms: 100
# reaction time of the user to stop the tracking when scene changed or tracking box shifts
user_reaction_time_in_milliseconds: 1500
##################
# Scene Detector #
##################
# Specify the miniimum scene length in seconds
min_scene_len: 3
# Threshold value for the content detector to detect an scene change
scene_content_detector_threshold: 30.0
# Threshold value for the threshold detector to detect an scene change
scene_threshold_detector_threshold: 12
##############################
# VR Movement in y Direction #
##############################
# 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: -16.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
#################################
# All other predicted Movements #
#################################
# Shift predicted min points by given frame number. Positive values delay the position
# and negative values result in an earlier position.
shift_min_points: 0
# Shift predicted max points by given frame number. Positive values delay the position
# and negative values result in an earlier position.
shift_max_points: 0
# An fix offset to the min points (positive values increase position and negative values
# lower the points). The offset respect the user defined upper and lower limit.
min_points_offset: -7.5
# An fix offset to the max points (positive values increase the position and negative values
# lower the points). The offset respect the user defined upper and lower limit.
max_points_offset: 7.5
# Define the min threshold. All min points lower than (min + threshold) will be set to
# the specified min value. Set 0.0 to disable this function.
min_threshold: 2.5
# Define the max threshold. All right points greater than (max - threshold) will be set to
# the specified max value. Set 0.0 to disable this function.
max_threshold: 2.5