sengeolab commited on
Commit
09f0008
·
verified ·
1 Parent(s): 13a3514

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ import gradio as gr
5
  from transformers import AutoTokenizer, AutoModelForSequenceClassification
6
 
7
  # Load the model and tokenizer
8
- model_name = "sengeolab/geocoder" # This should be the correct model identifier
9
  tokenizer = AutoTokenizer.from_pretrained(model_name)
10
  model = AutoModelForSequenceClassification.from_pretrained(model_name)
11
 
 
5
  from transformers import AutoTokenizer, AutoModelForSequenceClassification
6
 
7
  # Load the model and tokenizer
8
+ model_name = "sengeolab/geocode" # This should be the correct model identifier
9
  tokenizer = AutoTokenizer.from_pretrained(model_name)
10
  model = AutoModelForSequenceClassification.from_pretrained(model_name)
11