Update README.md with citation
Browse files
README.md
CHANGED
@@ -42,4 +42,17 @@ inputs = processor(audio, return_tensors="pt")
|
|
42 |
model_out = model.generate(inputs['input_features'].cuda().half())
|
43 |
text = tokenizer.decode(model_out[0], skip_special_tokens=True)
|
44 |
print(text)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
```
|
|
|
42 |
model_out = model.generate(inputs['input_features'].cuda().half())
|
43 |
text = tokenizer.decode(model_out[0], skip_special_tokens=True)
|
44 |
print(text)
|
45 |
+
```
|
46 |
+
|
47 |
+
### Citation:
|
48 |
+
|
49 |
+
For now, please cite:
|
50 |
+
|
51 |
+
```bibtex
|
52 |
+
@misc{darefsky2024parakeet,
|
53 |
+
author = {Darefsky, Jordan and Zhu, Ge and Duan, Zhiyao},
|
54 |
+
title = {Parakeet},
|
55 |
+
year = {2024},
|
56 |
+
url = {https://jordandarefsky.com/blog/2024/parakeet/}
|
57 |
+
}
|
58 |
```
|