alanakbik commited on
Commit
d7e89e5
1 Parent(s): eb3b691

Better models

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -9,9 +9,9 @@ st.set_page_config(layout="centered")
9
 
10
  # models to choose from
11
  model_map = {
12
- "find Entities (default)": "ner",
13
- "find Entities (18-class)": "ner-ontonotes",
14
- "find Parts-of-Speech": "upos",
15
  }
16
 
17
  # Block 1: Users can select a model
 
9
 
10
  # models to choose from
11
  model_map = {
12
+ "find Entities (default)": "ner-large",
13
+ "find Entities (18-class)": "ner-ontonotes-large",
14
+ "find Parts-of-Speech": "pos-multi",
15
  }
16
 
17
  # Block 1: Users can select a model