psyche commited on
Commit
9cf406d
·
verified ·
1 Parent(s): 8924b42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -49,10 +49,9 @@ if not torch.cuda.is_available():
49
 
50
 
51
  if torch.cuda.is_available():
52
- model_id = "psyche/ldcc_soloar_v2.5"
53
  model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", load_in_4bit=True)
54
  tokenizer = AutoTokenizer.from_pretrained(model_id)
55
- tokenizer.use_default_system_prompt = True
56
 
57
 
58
 
 
49
 
50
 
51
  if torch.cuda.is_available():
52
+ model_id = "psyche/llama3-8b-instruct-mrc-v0.1"
53
  model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", load_in_4bit=True)
54
  tokenizer = AutoTokenizer.from_pretrained(model_id)
 
55
 
56
 
57