EddieXIA commited on
Commit
e81576c
1 Parent(s): cc9a460

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import pytesseract
6
  from PIL import Image
7
 
8
  # Load StarCoder model and tokenizer
9
- model_name = "starcoder-plus" # Replace with the correct model name
10
  model = AutoModelForSeq2SeqLM.from_pretrained(model_name)
11
  tokenizer = AutoTokenizer.from_pretrained(model_name)
12
 
 
6
  from PIL import Image
7
 
8
  # Load StarCoder model and tokenizer
9
+ model_name = "bigcode/starcoderplus" # Replace with the correct model name
10
  model = AutoModelForSeq2SeqLM.from_pretrained(model_name)
11
  tokenizer = AutoTokenizer.from_pretrained(model_name)
12