File size: 1,160 Bytes
ac3e0e8
874ec99
84bfc91
874ec99
84bfc91
874ec99
 
 
 
 
 
84bfc91
874ec99
84bfc91
874ec99
 
 
 
84bfc91
874ec99
 
 
 
 
 
 
 
 
 
84bfc91
874ec99
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_path = "GRMenon/mental-mistral-7b-instruct-autotrain"

tokenizer = AutoTokenizer.from_pretrained(model_path)
model = AutoModelForCausalLM.from_pretrained(
    model_path,
    device_map="auto",
    torch_dtype='auto'
).eval()

device = "cuda" if torch.cuda.is_available() else "cpu"

# Prompt content:
messages = [
    {"role": "user", "content": "Hey Connor! I have been feeling a bit down lately. I could really use some advice on how to feel better?"}
]

input_ids = tokenizer.apply_chat_template(conversation=messages,
                                          tokenize=True,
                                          add_generation_prompt=True,
                                          return_tensors='pt').to(device)
output_ids = model.generate(input_ids=input_ids,
                            max_new_tokens=512,
                            do_sample=True,
                            pad_token_id=2)
response = tokenizer.batch_decode(output_ids.detach().cpu().numpy(),
                                  skip_special_tokens = True)

# Model response: 
print(response[0])