loubb commited on
Commit
bccf634
·
verified ·
1 Parent(s): a916ba1

Upload light-preprocess.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. light-preprocess.json +101 -0
light-preprocess.json ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "note_density_in_interval":{
3
+ "args": {
4
+ "test_params_list":
5
+ [
6
+ {
7
+ "max_notes_per_second": 60,
8
+ "max_notes_per_second_per_pitch": 15,
9
+ "interval_len_s": 3
10
+ },
11
+ {
12
+ "max_notes_per_second": 45,
13
+ "max_notes_per_second_per_pitch": 10,
14
+ "interval_len_s": 5
15
+ },
16
+ {
17
+ "max_notes_per_second": 40,
18
+ "max_notes_per_second_per_pitch": 8,
19
+ "interval_len_s": 10
20
+ },
21
+ {
22
+ "max_notes_per_second": 30,
23
+ "max_notes_per_second_per_pitch": 6,
24
+ "interval_len_s": 45
25
+ }
26
+ ]
27
+ }
28
+ },
29
+ "note_timing_entropy":{
30
+ "args": {
31
+ "min_length_entropy": 2.5,
32
+ "min_onset_delta_entropy": 0.0
33
+ }
34
+ },
35
+ "note_pitch_entropy":{
36
+ "args": {
37
+ "min_entropy": 3.0
38
+ }
39
+ },
40
+ "unique_pitch_count_in_interval":{
41
+ "args": {
42
+ "test_params_list":
43
+ [
44
+ {"min_unique_pitch_cnt": 5, "interval_len_s": 30},
45
+ {"min_unique_pitch_cnt": 8, "interval_len_s": 60},
46
+ {"min_unique_pitch_cnt": 10, "interval_len_s": 120}
47
+ ]
48
+ }
49
+ },
50
+ "unique_pitch_count":{
51
+ "args": {
52
+ "min_num_unique_pitches": 12
53
+ }
54
+ },
55
+ "silent_interval":{
56
+ "args": {
57
+ "max_silence_s": 20
58
+ }
59
+ },
60
+ "mean_note_velocity":{
61
+ "args": {
62
+ "min_mean_velocity": 20,
63
+ "max_mean_velocity": 105
64
+ }
65
+ },
66
+ "max_programs":{
67
+ "args": {
68
+ "max": 12
69
+ }
70
+ },
71
+ "max_instruments":{
72
+ "args": {
73
+ "max": 7
74
+ }
75
+ },
76
+ "total_note_frequency":{
77
+ "args": {
78
+ "min_per_second": 1.5,
79
+ "max_per_second": 30
80
+ }
81
+ },
82
+ "note_frequency_per_instrument":{
83
+ "args": {
84
+ "min_per_second": 1.0,
85
+ "max_per_second": 25
86
+ }
87
+ },
88
+ "length":{
89
+ "args": {
90
+ "min_length_s": 30,
91
+ "max_length_s": 7200
92
+ }
93
+ },
94
+ "repetitive_content":{
95
+ "args": {
96
+ "min_length_m": 20,
97
+ "num_chunks": 5,
98
+ "kl_tolerance": 0.2
99
+ }
100
+ }
101
+ }