sunwaee commited on
Commit
10020c5
·
1 Parent(s): 1bd5407

changed default model

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -65,7 +65,7 @@ task = left.selectbox('Choose the task: ', options=['Questions/Answers Pairs Gen
65
  help='Choose the task you want to try out')
66
 
67
  # Model selection
68
- model_path = right.selectbox('', options=[k for k in ids], index=0, help='Model to use. ')
69
  model = load_model(model_path=f"model/{model_path}.ckpt")
70
  right.write(model.device)
71
 
 
65
  help='Choose the task you want to try out')
66
 
67
  # Model selection
68
+ model_path = right.selectbox('', options=[k for k in ids], index=1, help='Model to use. ')
69
  model = load_model(model_path=f"model/{model_path}.ckpt")
70
  right.write(model.device)
71