debisoft commited on
Commit
551a1d5
·
1 Parent(s): efa8bf9
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ huggingface_hub.login(os.getenv('HUGGINGFACE_TOKEN'))
11
  @spaces.GPU
12
  def sentience_check():
13
  device = torch.device("cuda")
14
- tokenizer = AutoTokenizer.from_pretrained("debisoft/gemma-2-2B-it-thinking-function_calling-V0")
15
- model = AutoModelForCausalLM.from_pretrained("debisoft/gemma-2-2B-it-thinking-function_calling-V0").to(device)
16
 
17
  inputs = tokenizer("Are you sentient?", return_tensors="pt").to(device)
18
 
 
11
  @spaces.GPU
12
  def sentience_check():
13
  device = torch.device("cuda")
14
+ tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/DeepSeek-R1-Distill-Qwen-7B")
15
+ model = AutoModelForCausalLM.from_pretrained("deepseek-ai/DeepSeek-R1-Distill-Qwen-7B").to(device)
16
 
17
  inputs = tokenizer("Are you sentient?", return_tensors="pt").to(device)
18