-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve pylint score, readme, and actions
- Loading branch information
Showing
19 changed files
with
196 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
pos_resolution = 4 # 16 # per beat (quarter note) | ||
bar_max = 32 | ||
velocity_quant = 4 | ||
tempo_quant = 12 # 2 ** (1 / 12) | ||
min_tempo = 16 | ||
max_tempo = 256 | ||
duration_max = 4 # 2 ** 8 * beat | ||
max_ts_denominator = 6 # x/1 x/2 x/4 ... x/64 | ||
max_notes_per_bar = 1 # 1/64 ... 128/64 # | ||
beat_note_factor = 4 # In MIDI format a note is always 4 beats | ||
deduplicate = True | ||
filter_symbolic = False | ||
filter_symbolic_ppl = 16 | ||
trunc_pos = 2 ** 16 # approx 30 minutes (1024 measures) | ||
sample_len_max = 1024 # window length max | ||
sample_overlap_rate = 1.5 | ||
ts_filter = True | ||
pool_num = 200 | ||
max_inst = 127 | ||
max_pitch = 127 | ||
max_velocity = 127 | ||
tracks_start = [16, 144, 997, 5366, 6921, 10489] | ||
tracks_end = [143, 996, 5365, 6920, 10488, 11858] | ||
POS_RESOLUTION = 4 # 16 # per beat (quarter note) | ||
BAR_MAX = 32 | ||
VELOCITY_QUANT = 4 | ||
TEMPO_QUANT = 12 # 2 ** (1 / 12) | ||
MIN_TEMPO = 16 | ||
MAX_TEMPO = 256 | ||
DURATION_MAX = 4 # 2 ** 8 * beat | ||
MAX_TS_DENOMINATOR = 6 # x/1 x/2 x/4 ... x/64 | ||
MAX_NOTES_PER_BAR = 1 # 1/64 ... 128/64 # | ||
BEAT_NOTE_FACTOR = 4 # In MIDI format a note is always 4 beats | ||
DEDUPLICATE = True | ||
FILTER_SYMBOLIC = False | ||
FILTER_SYMBOLIC_PPL = 16 | ||
TRUNC_POS = 2 ** 16 # approx 30 minutes (1024 measures) | ||
SAMPLE_LEN_MAX = 1024 # window length max | ||
SAMPLE_OVERLAP_RATE = 1.5 | ||
TS_FILTER = True | ||
POOL_NUM = 200 | ||
MAX_INST = 127 | ||
MAX_PITCH = 127 | ||
MAX_VELOCITY = 127 | ||
TRACKS_START = [16, 144, 997, 5366, 6921, 10489] | ||
TRACKS_END = [143, 996, 5365, 6920, 10488, 11858] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.