speechbrainteam
commited on
Commit
•
2593c7e
1
Parent(s):
6a4d456
Update README.md
Browse files
README.md
CHANGED
@@ -14,7 +14,7 @@ datasets:
|
|
14 |
- voxceleb
|
15 |
metrics:
|
16 |
- EER
|
17 |
-
-
|
18 |
---
|
19 |
|
20 |
<iframe src="https://ghbtns.com/github-btn.html?user=speechbrain&repo=speechbrain&type=star&count=true&size=large&v=2" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
|
@@ -60,6 +60,28 @@ embeddings = classifier.encode_batch(signal)
|
|
60 |
### Inference on GPU
|
61 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
### Limitations
|
64 |
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
|
65 |
|
@@ -88,7 +110,7 @@ The SpeechBrain team does not provide any warranty on the performance achieved b
|
|
88 |
year = {2021},
|
89 |
publisher = {GitHub},
|
90 |
journal = {GitHub repository},
|
91 |
-
howpublished = {
|
92 |
}
|
93 |
```
|
94 |
|
|
|
14 |
- voxceleb
|
15 |
metrics:
|
16 |
- EER
|
17 |
+
- min_dct
|
18 |
---
|
19 |
|
20 |
<iframe src="https://ghbtns.com/github-btn.html?user=speechbrain&repo=speechbrain&type=star&count=true&size=large&v=2" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
|
|
|
60 |
### Inference on GPU
|
61 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
62 |
|
63 |
+
### Training
|
64 |
+
The model was trained with SpeechBrain (aa018540).
|
65 |
+
To train it from scratch follows these steps:
|
66 |
+
1. Clone SpeechBrain:
|
67 |
+
```bash
|
68 |
+
git clone https://github.com/speechbrain/speechbrain/
|
69 |
+
```
|
70 |
+
2. Install it:
|
71 |
+
```
|
72 |
+
cd speechbrain
|
73 |
+
pip install -r requirements.txt
|
74 |
+
pip install -e .
|
75 |
+
```
|
76 |
+
|
77 |
+
3. Run Training:
|
78 |
+
```
|
79 |
+
cd recipes/VoxCeleb/SpeakerRec/
|
80 |
+
python train_speaker_embeddings.py hparams/train_x_vectors.yaml --data_folder=your_data_folder
|
81 |
+
```
|
82 |
+
|
83 |
+
You can find our training results (models, logs, etc) [here](https://drive.google.com/drive/folders/1RtCBJ3O8iOCkFrJItCKT9oL-Q1MNCwMH?usp=sharing).
|
84 |
+
|
85 |
### Limitations
|
86 |
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
|
87 |
|
|
|
110 |
year = {2021},
|
111 |
publisher = {GitHub},
|
112 |
journal = {GitHub repository},
|
113 |
+
howpublished = {\\url{https://github.com/speechbrain/speechbrain}},
|
114 |
}
|
115 |
```
|
116 |
|