Skip to content

Commit

Permalink
[lint] fix quick-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
cdliang11 committed Sep 4, 2024
1 parent a57af63 commit 69e4449
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
28 changes: 14 additions & 14 deletions examples/librimix/tse/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ data/
|__ embed.ark, embed.scp, ... # files generated by Stage 1
|__ shard.list
|__ shards/
|__ shards_000000000.tar
|__ ...
|__ shards_000000013.tar
|__ shards_000000000.tar
|__ ...
|__ shards_000000013.tar
```
------
Expand Down Expand Up @@ -402,11 +402,11 @@ ${exp_dir}/
|__ train.log
|__ config.yaml
|__ models/
|__ checkpoint_1.pt
|__ ...
|__ checkpoint_150.pt
|__ final_checkpoint.pt -> checkpoint_150.pt
|__ latest_checkpoint.pt -> checkpoint_150.pt
|__ checkpoint_1.pt
|__ ...
|__ checkpoint_150.pt
|__ final_checkpoint.pt -> checkpoint_150.pt
|__ latest_checkpoint.pt -> checkpoint_150.pt
```

------
Expand Down Expand Up @@ -436,10 +436,10 @@ ${exp_dir}/
|__ models/
|__ infer.log
|__ audio/
|__ spk1.scp # each line records two space-separated columns: `target_wav_id` and `target_wav_path`
|__ Utt1001-4992-41806-0008_6930-75918-0015-T4992.wav
|__ ...
|__ Utt999-61-70968-0003_2830-3980-0008-T61.wav
|__ spk1.scp # each line records two space-separated columns: `target_wav_id` and `target_wav_path`
|__ Utt1001-4992-41806-0008_6930-75918-0015-T4992.wav
|__ ...
|__ Utt999-61-70968-0003_2830-3980-0008-T61.wav
```

------
Expand All @@ -453,8 +453,8 @@ At the end of this stage, a markdown file `RESULTS.md` will be created under `ex
```
exp/BSRNN/
|__ ${exp_dir}
| |__ train.log, ... # files and directories generated in Stage 4
| |__ scoring/
| |__ train.log, ... # files and directories generated in Stage 4
| |__ scoring/
|
|__ RESULTS.md
```
Expand Down
30 changes: 15 additions & 15 deletions examples/librimix/tse/v2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ data/
|__ single.utt2spk, single.wav.scp, ... # files generated by Stage 1
|__ shard.list
|__ shards/
|__ shards_000000000.tar
|__ ...
|__ shards_000000013.tar
|__ shards_000000000.tar
|__ ...
|__ shards_000000013.tar
```
------
Expand Down Expand Up @@ -440,11 +440,11 @@ ${exp_dir}/
|__ train.log
|__ config.yaml
|__ models/
|__ checkpoint_1.pt
|__ ...
|__ checkpoint_150.pt
|__ final_checkpoint.pt -> checkpoint_150.pt
|__ latest_checkpoint.pt -> checkpoint_150.pt
|__ checkpoint_1.pt
|__ ...
|__ checkpoint_150.pt
|__ final_checkpoint.pt -> checkpoint_150.pt
|__ latest_checkpoint.pt -> checkpoint_150.pt
```

------
Expand Down Expand Up @@ -488,10 +488,10 @@ ${exp_dir}/
|__ models/
|__ infer.log
|__ audio/
|__ spk1.scp # each line records two space-separated columns: `target_wav_id` and `target_wav_path`
|__ Utt1001-4992-41806-0008_6930-75918-0015-T4992.wav
|__ ...
|__ Utt999-61-70968-0003_2830-3980-0008-T61.wav
|__ spk1.scp # each line records two space-separated columns: `target_wav_id` and `target_wav_path`
|__ Utt1001-4992-41806-0008_6930-75918-0015-T4992.wav
|__ ...
|__ Utt999-61-70968-0003_2830-3980-0008-T61.wav
```

------
Expand All @@ -505,8 +505,8 @@ At the end of this stage, a markdown file `RESULTS.md` will be created under `ex
```
exp/BSRNN/
|__ ${exp_dir}
| |__ train.log, ... # files and directories generated in Stage 5
| |__ scoring/
| |__ train.log, ... # files and directories generated in Stage 5
| |__ scoring/
|
|__ RESULTS.md
```
```
10 changes: 5 additions & 5 deletions wesep/modules/tasnet/separator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

class Separation(nn.Module):
"""
R Number of repeats
X Number of convolutional blocks in each repeat
B Number of channels in bottleneck and the residual paths
H Number of channels in convolutional blocks
P Kernel size in convolutional blocks
R Number of repeats
X Number of convolutional blocks in each repeat
B Number of channels in bottleneck and the residual paths
H Number of channels in convolutional blocks
P Kernel size in convolutional blocks
norm The type of normalization(gln, cl, bn)
causal Two choice(causal or noncausal)
skip_con Whether to use skip connection
Expand Down

0 comments on commit 69e4449

Please sign in to comment.