Temuzin64 commited on
Commit
8d3a00d
·
verified ·
1 Parent(s): 1fff4b1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ try:
11
  info = st.empty()
12
  info.markdown("#### :red[Model is Loading....]")
13
 
14
- model = AutoModelForCausalLM.from_pretrained(model_name, revision="main", use_auth_token=True)
15
- tokenizer = AutoTokenizer.from_pretrained(model_name, revision="main", use_auth_token=True, use_fast=True)
16
 
17
 
18
 
 
11
  info = st.empty()
12
  info.markdown("#### :red[Model is Loading....]")
13
 
14
+ model = AutoModelForCausalLM.from_pretrained(model_name, revision="main")
15
+ tokenizer = AutoTokenizer.from_pretrained(model_name, revision="main" use_fast=True)
16
 
17
 
18