Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,14 +7,14 @@ from TTS.api import TTS # Coqui TTS library
|
|
7 |
import PyPDF2
|
8 |
|
9 |
# Initialize Models
|
10 |
-
stt_model = pipeline("automatic-speech-recognition", model="openai/whisper-tiny")
|
11 |
-
embedding_model = SentenceTransformer("
|
12 |
|
13 |
-
gpt_model_name = "google/flan-t5-small" #
|
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) #
|
18 |
|
19 |
# Parse PDF and create resume content
|
20 |
def parse_resume(pdf):
|
|
|
7 |
import PyPDF2
|
8 |
|
9 |
# Initialize Models
|
10 |
+
stt_model = pipeline("automatic-speech-recognition", model="openai/whisper-tiny") # Fast STT model
|
11 |
+
embedding_model = SentenceTransformer("paraphrase-MiniLM-L6-v2") # Optimized embedding model
|
12 |
|
13 |
+
gpt_model_name = "google/flan-t5-small" # Lightweight question generation model
|
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) # Efficient TTS model
|
18 |
|
19 |
# Parse PDF and create resume content
|
20 |
def parse_resume(pdf):
|