alex6095 commited on
Commit
43b149d
1 Parent(s): a9769aa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ tokenizer = KoBertTokenizer.from_pretrained('monologg/distilkobert')
10
 
11
  @st.cache(allow_output_mutation=True)
12
  def get_model():
13
- model = DistilBertForSequenceClassification.from_pretrained('monologg/distilkobert', problem_type="multi_label_classification", num_labels=9)
14
  model.eval()
15
  return model
16
 
 
10
 
11
  @st.cache(allow_output_mutation=True)
12
  def get_model():
13
+ model = DistilBertForSequenceClassification.from_pretrained('alex6095/SanctiMolyTopic', problem_type="multi_label_classification", num_labels=9)
14
  model.eval()
15
  return model
16