gallilmaimon
commited on
Commit
•
e650040
1
Parent(s):
f60806d
Update README.md
Browse files
README.md
CHANGED
@@ -20,8 +20,9 @@ It was trained on a varied mixture of datasets: Multilingual LS, Vox Populi, Com
|
|
20 |
trained for 3 iterations with the default 50Hz features rate. For the 4-th iteration, they add an additional convolutional layer at the CNN
|
21 |
Encoder with the stride 2, resulting in features of 25Hz.
|
22 |
|
23 |
-
We converted the original Fairseq release to Huggingface🤗 using the [conversion script](
|
24 |
-
|
|
|
25 |
|
26 |
- **Developed by:** Hassid et. al
|
27 |
- **Shared by:** [SLP-RL](https://www.cs.huji.ac.il/~adiyoss/slprl/index.html)
|
@@ -41,8 +42,8 @@ This is a base HubertModel and as such is useful as a feature extractor for spee
|
|
41 |
|
42 |
## How to Get Started with the Model
|
43 |
|
44 |
-
This model requires a
|
45 |
-
follows:
|
46 |
|
47 |
```python
|
48 |
from transformers import HubertModel
|
|
|
20 |
trained for 3 iterations with the default 50Hz features rate. For the 4-th iteration, they add an additional convolutional layer at the CNN
|
21 |
Encoder with the stride 2, resulting in features of 25Hz.
|
22 |
|
23 |
+
We converted the original Fairseq release to Huggingface🤗 using the [conversion script](https://github.com/huggingface/transformers/blob/main/src/transformers/models/hubert/convert_hubert_original_pytorch_checkpoint_to_pytorch.py),
|
24 |
+
after [adding support](https://github.com/huggingface/transformers/pull/34389),
|
25 |
+
and asserted that the results are [identical](https://github.com/huggingface/transformers/blob/10feacd88aef9569e240b7e3833ab32b297e4460/tests/models/hubert/test_modeling_hubert.py#L947).
|
26 |
|
27 |
- **Developed by:** Hassid et. al
|
28 |
- **Shared by:** [SLP-RL](https://www.cs.huji.ac.il/~adiyoss/slprl/index.html)
|
|
|
42 |
|
43 |
## How to Get Started with the Model
|
44 |
|
45 |
+
This model currently requires a a clone of the transformers repository, but will be integrated to the package in coming updates soon. Use version `transformers>=??`, so make sure you have it installed.
|
46 |
+
Afterwards it can be used as follows:
|
47 |
|
48 |
```python
|
49 |
from transformers import HubertModel
|