jaketae commited on
Commit
a1eddb6
1 Parent(s): 49a3441

docs: add readme

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # HiFi-GAN
2
+
3
+ [HiFi-GAN](https://arxiv.org/abs/2010.05646) vocoder trained on the [LJ Speech dataset](https://keithito.com/LJ-Speech-Dataset/). The modeling code is based on the [official implementation](https://github.com/jik876/hifi-gan) and the [fairseq adaptation](https://github.com/pytorch/fairseq).
4
+
5
+ ## Usage
6
+
7
+ ```python
8
+ from transformers import AutoModel
9
+
10
+ model = AutoModel.from_pretrained("jake/hifigan-lj-v1", trust_remote_code=True)
11
+ ```
12
+