TuringsSolutions commited on
Commit
65aeece
1 Parent(s): ed13d86

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,8 +2,8 @@ import gradio as gr
2
  from transformers import AutoTokenizer, AutoModelForCausalLM
3
 
4
  # Load tokenizer and model
5
- tokenizer = AutoTokenizer.from_pretrained("TuringsSolutions/Phi3LawCaseManagement", trust_remote_code=True)
6
- model = AutoModelForCausalLM.from_pretrained("TuringsSolutions/Phi3LawCaseManagement", trust_remote_code=True)
7
 
8
  def predict(prompt, temperature, max_tokens):
9
  inputs = tokenizer(prompt, return_tensors="pt")
 
2
  from transformers import AutoTokenizer, AutoModelForCausalLM
3
 
4
  # Load tokenizer and model
5
+ tokenizer = AutoTokenizer.from_pretrained("TuringsSolutions/Gemma2LegalEdition", trust_remote_code=True)
6
+ model = AutoModelForCausalLM.from_pretrained("TuringsSolutions/Gemma2LegalEdition", trust_remote_code=True)
7
 
8
  def predict(prompt, temperature, max_tokens):
9
  inputs = tokenizer(prompt, return_tensors="pt")