garyd1 commited on
Commit
81fefa5
·
verified ·
1 Parent(s): ee24f9a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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("all-MiniLM-L6-v2")
12
 
13
- gpt_model_name = "google/flan-t5-small" # Switched to a smaller model for faster loading
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):
 
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):