Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,45 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
-
import torch
|
3 |
-
from transformers import AutoModelForMultipleChoice, AutoTokenizer
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
inputs = [f"{question} {choice}" for choice in choices]
|
15 |
-
tokenized = tokenizer(inputs, truncation=True, padding=True, return_tensors="pt")
|
16 |
-
return {
|
17 |
-
"input_ids": tokenized["input_ids"],
|
18 |
-
"attention_mask": tokenized["attention_mask"]
|
19 |
-
}
|
20 |
-
|
21 |
-
# Define the prediction function
|
22 |
-
def predict(data):
|
23 |
-
inputs = torch.stack(data["input_ids"])
|
24 |
-
masks = torch.stack(data["attention_mask"])
|
25 |
-
with torch.no_grad():
|
26 |
-
logits = model(inputs, attention_mask=masks).logits
|
27 |
-
predicted_indices = torch.argmax(logits, dim=1)
|
28 |
-
answers = [chr(ord('A') + idx) for idx in predicted_indices]
|
29 |
-
return answers
|
30 |
-
|
31 |
-
# Create the Gradio interface
|
32 |
-
iface = gr.Interface(
|
33 |
-
fn=predict,
|
34 |
-
inputs=gr.inputs.Input(type="json"),
|
35 |
-
outputs=gr.outputs.Label(num_top_classes=1, label="Predicted Answer"),
|
36 |
-
live=True,
|
37 |
-
examples=[
|
38 |
-
{"question": "What is the capital of France?", "A": "Paris", "B": "London", "C": "Berlin", "D": "Madrid", "E": "Rome"}
|
39 |
-
],
|
40 |
-
title="Multiple-Choice Question Answering",
|
41 |
-
description="Enter a question and answer choices (A to E) to get the predicted answer.",
|
42 |
)
|
43 |
-
|
44 |
-
# Run the interface
|
45 |
-
iface.launch()
|
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
+
def greet(name, is_morning, temperature):
|
4 |
+
salutation = "Good morning" if is_morning else "Good evening"
|
5 |
+
greeting = f"{salutation} {name}. It is {temperature} degrees today"
|
6 |
+
celsius = (temperature - 32) * 5 / 9
|
7 |
+
return greeting, round(celsius, 2)
|
8 |
|
9 |
+
demo = gr.Interface(
|
10 |
+
fn=greet,
|
11 |
+
inputs=["text", "checkbox", gr.Slider(0, 100)],
|
12 |
+
outputs=["text", "number"],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
)
|
14 |
+
demo.launch(share=True)
|
|
|
|