mskov commited on
Commit
63a5f5f
·
1 Parent(s): 2d133d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -11,6 +11,7 @@ model_cache = {}
11
 
12
  def zero_shot_classify(audio_path: str, class_names: str, model_name: str) -> Dict[str, float]:
13
  class_names = class_names.split(",")
 
14
  tokenizer = get_tokenizer(multilingual=".en" not in model_name)
15
 
16
  if model_name not in model_cache:
 
11
 
12
  def zero_shot_classify(audio_path: str, class_names: str, model_name: str) -> Dict[str, float]:
13
  class_names = class_names.split(",")
14
+ print("model name: ", model_name)
15
  tokenizer = get_tokenizer(multilingual=".en" not in model_name)
16
 
17
  if model_name not in model_cache: