psyche commited on
Commit
00da7ee
·
verified ·
1 Parent(s): 0f9f20b

Update app.py

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