marcoyang commited on
Commit
9530b1f
1 Parent(s): 7846983

add models, log and scripts

Browse files
exp/evaluate.sh ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ export CUDA_VISIBLE_DEVICES="3"
4
+
5
+ for epoch in $(seq 30 2 50); do
6
+ for avg in $(seq 10 -2 2); do
7
+ python zipformer/evaluate.py \
8
+ --epoch $epoch \
9
+ --avg $avg \
10
+ --exp-dir zipformer/exp_at_as_full \
11
+ --max-duration 300
12
+ done
13
+ done
exp/export.sh ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+
4
+ python zipformer/export.py \
5
+ --exp-dir zipformer/exp_at_as_full \
6
+ --epoch 32 \
7
+ --avg 8 \
8
+ --use-averaged-model 1 \
9
+ --jit 1
exp/jit_script.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cf887cf4e38a2a724f6b086c93c2652567394b24bb8e92aef169bed9c23c5740
3
+ size 259797890
exp/log/log-train-2023-12-20-17-30-48-0 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-20-17-30-48-1 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-20-17-30-48-2 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-20-17-30-48-3 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-21-10-53-09-0 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-21-10-53-09-1 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-21-10-53-09-2 ADDED
The diff for this file is too large to render. See raw diff
 
exp/log/log-train-2023-12-21-10-53-09-3 ADDED
The diff for this file is too large to render. See raw diff
 
exp/pretrained.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:24c9c7dd3b6c449a2b5b662d65a94892002a62da35382918b8a1136bbf2be8f1
3
+ size 257464164
exp/pretrained.sh ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ export CUDA_VISIBLE_DEVICES="4"
4
+
5
+ python zipformer/pretrained.py \
6
+ --checkpoint zipformer/exp_at_as_full/pretrained.pt \
7
+ --label-dict downloads/audioset/class_labels_indices.csv \
8
+ downloads/audioset/eval/wav/__p-iA312kg_70.000_80.000.wav
exp/tensorboard/events.out.tfevents.1703064648.de-74279-k2-train-7-1218101249-5bcbfb5567-jsftr.3128718.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4fe2589f0b0636052c14584f8a36baf6b9fed4dfeb1b95cca2ff06ce865f2a9
3
+ size 44847
exp/tensorboard/events.out.tfevents.1703127189.de-74279-k2-train-2-1207150844-f49d8c4f4-c49d5.394581.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0bd308fb1dc6484e929e39320d27ff943e1c60f2056685df921d9349dbe99959
3
+ size 1774817
exp/train.sh ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ export CUDA_VISIBLE_DEVICES="4,5,6,7"
4
+
5
+ subset=full
6
+
7
+ python zipformer/train.py \
8
+ --world-size 4 \
9
+ --num-epochs 50 \
10
+ --exp-dir zipformer/exp_at_as_${subset} \
11
+ --start-epoch 1 \
12
+ --use-fp16 1 \
13
+ --num-events 527 \
14
+ --audioset-subset $subset \
15
+ --max-duration 1000 \
16
+ --enable-musan True \
17
+ --master-port 13455