AlexandraDolidze commited on
Commit
9f3a098
1 Parent(s): 04c5dea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -2,9 +2,9 @@ import streamlit as st
2
  from hf_inference import infer_multimodal_model
3
 
4
  paths = {
5
- 'text_model_path': 'files/bert-large-uncased_none_seed-42.pt',
6
- 'video_model_path': 'files/XCLIP_Augmented.pt',
7
- 'audio_model_path': 'files/1d_cnn_with_opensmile.pt',
8
  'multimodal_model_path': 'files/multimodal_model_with_early_fusion.pt'
9
  }
10
 
 
2
  from hf_inference import infer_multimodal_model
3
 
4
  paths = {
5
+ 'text_model_path': 'bert-large-uncased_none_seed-42.pt',
6
+ 'video_model_path': 'XCLIP_Augmented.pt',
7
+ 'audio_model_path': '1d_cnn_with_opensmile.pt',
8
  'multimodal_model_path': 'files/multimodal_model_with_early_fusion.pt'
9
  }
10