sparshmehta commited on
Commit
7641e4c
·
verified ·
1 Parent(s): f394b39

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -663,7 +663,7 @@ class MentorEvaluator:
663
  logger.info("Attempting to initialize Whisper model...")
664
  # First try to initialize model with downloading allowed
665
  self._whisper_model = WhisperModel(
666
- "medium",
667
  device="cpu",
668
  compute_type="int8",
669
  download_root=self.model_cache_dir,
@@ -676,7 +676,7 @@ class MentorEvaluator:
676
  try:
677
  logger.info("Attempting to load model from local cache...")
678
  self._whisper_model = WhisperModel(
679
- "medium",
680
  device="cpu",
681
  compute_type="int8",
682
  download_root=self.model_cache_dir,
 
663
  logger.info("Attempting to initialize Whisper model...")
664
  # First try to initialize model with downloading allowed
665
  self._whisper_model = WhisperModel(
666
+ "small",
667
  device="cpu",
668
  compute_type="int8",
669
  download_root=self.model_cache_dir,
 
676
  try:
677
  logger.info("Attempting to load model from local cache...")
678
  self._whisper_model = WhisperModel(
679
+ "small",
680
  device="cpu",
681
  compute_type="int8",
682
  download_root=self.model_cache_dir,