J4Lee commited on
Commit
97e086b
1 Parent(s): 5ea9a59

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ st.set_page_config(page_title= "Reports generation from Radiological Image ")
18
  @st.cache(allow_output_mutation=True)
19
  def get_model():
20
  #device = "cuda" # the device to load the model onto
21
- model = AutoPeftModelForCausalLM.from_pretrained("MariamAde/Mistral_finetuned_base2")
22
- tokenizer = AutoTokenizer.from_pretrained("MariamAde/Mistral_finetuned_base2")
23
  return tokenizer, model
24
 
25
 
 
18
  @st.cache(allow_output_mutation=True)
19
  def get_model():
20
  #device = "cuda" # the device to load the model onto
21
+ model = AutoPeftModelForCausalLM.from_pretrained("MariamAde/Mistral_finetuned_Base2")
22
+ tokenizer = AutoTokenizer.from_pretrained("MariamAde/Mistral_finetuned_Base2")
23
  return tokenizer, model
24
 
25