blackstone commited on
Commit
2729dcd
1 Parent(s): 8af0b8f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -36
README.md CHANGED
@@ -42,6 +42,7 @@ For a better experience, we encourage you to learn more about
42
  ## Pipeline description
43
 
44
  This system is composed of an ECAPA-TDNN model. It is a combination of convolutional and residual blocks. The embeddings are extracted using attentive statistical pooling. The system is trained with Additive Margin Softmax Loss. Speaker Verification is performed using cosine distance between speaker embeddings.
 
45
 
46
  ### Compute your speaker embeddings
47
 
@@ -68,31 +69,7 @@ score, prediction = verification.verify_files("tests/samples/ASR/spk1_snt1.wav",
68
  ### Inference on GPU
69
  To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
70
 
71
- ### Training
72
- The model was trained with SpeechBrain (aa018540).
73
- To train it from scratch follows these steps:
74
- 1. Clone SpeechBrain:
75
- ```bash
76
- git clone https://github.com/speechbrain/speechbrain/
77
- ```
78
- 2. Install it:
79
- ```
80
- cd speechbrain
81
- pip install -r requirements.txt
82
- pip install -e .
83
- ```
84
-
85
- 3. Run Training:
86
- ```
87
- cd recipes/VoxCeleb/SpeakerRec
88
- python train_speaker_embeddings.py hparams/train_ecapa_tdnn.yaml --data_folder=your_data_folder
89
- ```
90
-
91
- You can find our training results (models, logs, etc) [here](https://drive.google.com/drive/folders/1-ahC1xeyPinAHp2oAohL-02smNWO41Cc?usp=sharing).
92
-
93
-
94
-
95
- #### Referencing ECAPA-TDNN
96
  ```
97
  @inproceedings{DBLP:conf/interspeech/DesplanquesTD20,
98
  author = {Brecht Desplanques and
@@ -108,12 +85,6 @@ You can find our training results (models, logs, etc) [here](https://drive.googl
108
  publisher = {{ISCA}},
109
  year = {2020},
110
  }
111
- ```
112
-
113
- # **Citing SpeechBrain**
114
- Please, cite SpeechBrain if you use it for your research or business.
115
-
116
- ```bibtex
117
  @misc{speechbrain,
118
  title={{SpeechBrain}: A General-Purpose Speech Toolkit},
119
  author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio},
@@ -124,8 +95,3 @@ Please, cite SpeechBrain if you use it for your research or business.
124
  note={arXiv:2106.04624}
125
  }
126
  ```
127
-
128
- # **About SpeechBrain**
129
- - Website: https://speechbrain.github.io/
130
- - Code: https://github.com/speechbrain/speechbrain/
131
- - HuggingFace: https://huggingface.co/speechbrain/
 
42
  ## Pipeline description
43
 
44
  This system is composed of an ECAPA-TDNN model. It is a combination of convolutional and residual blocks. The embeddings are extracted using attentive statistical pooling. The system is trained with Additive Margin Softmax Loss. Speaker Verification is performed using cosine distance between speaker embeddings.
45
+ You can find our training results (models, logs, etc) [here](https://drive.google.com/drive/folders/1-ahC1xeyPinAHp2oAohL-02smNWO41Cc?usp=sharing).
46
 
47
  ### Compute your speaker embeddings
48
 
 
69
  ### Inference on GPU
70
  To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
71
 
72
+ #### References
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  ```
74
  @inproceedings{DBLP:conf/interspeech/DesplanquesTD20,
75
  author = {Brecht Desplanques and
 
85
  publisher = {{ISCA}},
86
  year = {2020},
87
  }
 
 
 
 
 
 
88
  @misc{speechbrain,
89
  title={{SpeechBrain}: A General-Purpose Speech Toolkit},
90
  author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio},
 
95
  note={arXiv:2106.04624}
96
  }
97
  ```