Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
import gradio as gr
|
3 |
+
|
4 |
+
model = AutoModelForCausalLM.from_pretrained("mistralai/Mistral-7B-Instruct-v0.1",torch_dtype=torch.float16, device_map="auto")
|
5 |
+
tokenizer = AutoTokenizer.from_pretrained("mistralai/Mistral-7B-Instruct-v0.1")
|
6 |
+
|
7 |
+
def generate(message):
|
8 |
+
text = f"You are an assistant to help people with suicide toughts and their family and friends. Given a sentence you will classify it into three categories: suicide intent, if the sentence belongs that has a suicide intent or have suicidal toughts; information, if the sentence belongs to a person that is looking for information about suicide or is concern about some relative; or depression, if the sentence belongs to a person that is depressed or have negative toughts. Classify with just one word the sentence {message} and give an explanation in Spanish"
|
9 |
+
|
10 |
+
messages = [
|
11 |
+
{"role": "user", "content": text},
|
12 |
+
]
|
13 |
+
|
14 |
+
encodeds = tokenizer.apply_chat_template(messages, return_tensors="pt")
|
15 |
+
|
16 |
+
model_inputs = encodeds.to(device)
|
17 |
+
model.to(device)
|
18 |
+
|
19 |
+
generated_ids = model.generate(model_inputs, max_new_tokens=1000, do_sample=True)
|
20 |
+
decoded = tokenizer.batch_decode(generated_ids)
|
21 |
+
print(decoded[0][decoded[0].rfind(["[/INST]"])+6:])
|
22 |
+
|
23 |
+
|
24 |
+
example1 = "No quiero seguir viviendo 驴qu茅 puedo hacer?."
|
25 |
+
example2 = "驴C贸mo puedo ayudar a un amigo que quiere quitarse la vida?"
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
iface = gr.Interface(fn=information_or_intent,inputs="text", outputs="text",examples=[example1,example2]).launch(share=False)
|