typo fix
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ model = AutoModelForCausalLM.from_pretrained(
|
|
| 22 |
tokenizer = AutoTokenizer.from_pretrained("akh99/veena-hinglish", trust_remote_code=True)
|
| 23 |
|
| 24 |
# Initialize SNAC decoder
|
| 25 |
-
snac_model = SNAC.from_pretrained("hubertsiuzdak/snac_24khz").eval()to("cpu")
|
| 26 |
|
| 27 |
# Control token IDs (fixed for Veena)
|
| 28 |
START_OF_SPEECH_TOKEN = 128257
|
|
|
|
| 22 |
tokenizer = AutoTokenizer.from_pretrained("akh99/veena-hinglish", trust_remote_code=True)
|
| 23 |
|
| 24 |
# Initialize SNAC decoder
|
| 25 |
+
snac_model = SNAC.from_pretrained("hubertsiuzdak/snac_24khz").eval().to("cpu")
|
| 26 |
|
| 27 |
# Control token IDs (fixed for Veena)
|
| 28 |
START_OF_SPEECH_TOKEN = 128257
|