Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ gpt_model_name = "google/flan-t5-small" # Switched to a smaller model for faste
|
|
14 |
gpt_tokenizer = AutoTokenizer.from_pretrained(gpt_model_name)
|
15 |
gpt_model = AutoModelForSeq2SeqLM.from_pretrained(gpt_model_name)
|
16 |
|
17 |
-
tts_model = TTS(model_name="tts_models/en/ljspeech/
|
18 |
|
19 |
# Parse PDF and create resume content
|
20 |
def parse_resume(pdf):
|
|
|
14 |
gpt_tokenizer = AutoTokenizer.from_pretrained(gpt_model_name)
|
15 |
gpt_model = AutoModelForSeq2SeqLM.from_pretrained(gpt_model_name)
|
16 |
|
17 |
+
tts_model = TTS(model_name="tts_models/en/ljspeech/glow-tts", progress_bar=False, gpu=False) # Updated TTS model to avoid errors
|
18 |
|
19 |
# Parse PDF and create resume content
|
20 |
def parse_resume(pdf):
|