multimodalart HF Staff commited on
Commit
bbd0c30
·
1 Parent(s): 098d1fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -23,6 +23,8 @@ tokenizer = AutoTokenizer.from_pretrained("facebook/nllb-200-distilled-600M")
23
  model = AutoModelForSeq2SeqLM.from_pretrained("facebook/nllb-200-distilled-600M")
24
  whisper_model = WhisperModel("large-v2", device="cuda", compute_type="float16")
25
 
 
 
26
 
27
  def process_video(Video, target_language):
28
  current_path = os.getcwd()
 
23
  model = AutoModelForSeq2SeqLM.from_pretrained("facebook/nllb-200-distilled-600M")
24
  whisper_model = WhisperModel("large-v2", device="cuda", compute_type="float16")
25
 
26
+ print("cwd", os.getcwd())
27
+ print(os.listdir())
28
 
29
  def process_video(Video, target_language):
30
  current_path = os.getcwd()