lamooon commited on
Commit
bd4c066
·
verified ·
1 Parent(s): 0b0feff

migrate batch 7/19 from lamooon/vocal-v1

Browse files
train/e4/training_log.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
train/e5/best.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c26388a52919fc104acefa22552267e093d2981b36c0e45d0ab8326016f4d58a
3
+ size 1532564949
train/e5/config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "encoder": "m-a-p/MERT-v1-95M",
3
+ "encoder_hidden": 768,
4
+ "unet_channels": [
5
+ 256,
6
+ 512,
7
+ 512
8
+ ],
9
+ "conformer_layers": 4,
10
+ "conformer_heads": 8,
11
+ "conformer_ff_dim": 2048,
12
+ "conformer_conv_kernel": 31,
13
+ "num_pitches": 88,
14
+ "dropout": 0.1,
15
+ "onset_conv_kernel": 15,
16
+ "sample_rate": 24000,
17
+ "hop_length": 240,
18
+ "segment_length": 10.0,
19
+ "epochs": 20,
20
+ "batch_size": 8,
21
+ "accumulate_grad": 2,
22
+ "lr": 0.001,
23
+ "encoder_lr": 1e-05,
24
+ "layer_weight_lr": null,
25
+ "weight_decay": 0.01,
26
+ "warmup_epochs": 2,
27
+ "patience": 5,
28
+ "fp16": true,
29
+ "num_workers": 4,
30
+ "seed": 42,
31
+ "w_onset": 1.0,
32
+ "w_pitch": 1.0,
33
+ "w_frame": 0.5,
34
+ "focal_alpha": 0.85,
35
+ "focal_gamma": 2.0,
36
+ "pitch_sigma": 0.0,
37
+ "onset_threshold": 0.5,
38
+ "frame_threshold": 0.25,
39
+ "onset_tolerance_ms": 50,
40
+ "pitch_tolerance_cents": 50,
41
+ "data_dir": "./data",
42
+ "output_dir": "outputs/e5",
43
+ "checkpoint": "outputs/e5/best.pt",
44
+ "eval_only": true,
45
+ "per_dataset": true,
46
+ "datasets": null,
47
+ "augment": false,
48
+ "refine": false,
49
+ "refine_bpm": null,
50
+ "refine_iter": 5,
51
+ "device": null,
52
+ "no_f0_head": true,
53
+ "no_frame_head": true,
54
+ "no_viterbi": false,
55
+ "no_expected_value": false,
56
+ "refine_scoring": "harmonics"
57
+ }