Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,41 +1,31 @@
|
|
1 |
-
import torch
|
2 |
-
from transformers import AutoModelForCausalLM, AutoProcessor
|
3 |
-
from PIL import Image
|
4 |
import gradio as gr
|
|
|
|
|
5 |
|
6 |
-
# Load
|
7 |
model_id = "microsoft/Magma-8B"
|
8 |
-
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
|
9 |
-
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, trust_remote_code=True)
|
10 |
-
model.to("cuda" if torch.cuda.is_available() else "cpu")
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
inputs =
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
generate_ids = generate_ids[:, inputs["input_ids"].shape[-1]:]
|
26 |
-
response = processor.decode(generate_ids[0], skip_special_tokens=True).strip()
|
27 |
-
return response
|
28 |
|
29 |
-
# Gradio interface
|
30 |
interface = gr.Interface(
|
31 |
-
fn=
|
32 |
-
inputs=
|
33 |
-
|
34 |
-
|
35 |
-
],
|
36 |
-
outputs=gr.Textbox(label="MAGMA Output"),
|
37 |
-
title="MAGMA Image + Text to Text API",
|
38 |
-
description="Upload an image and enter a prompt. Returns MAGMA's textual response."
|
39 |
)
|
40 |
|
41 |
-
app
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
3 |
+
import torch
|
4 |
|
5 |
+
# Load tokenizer and model
|
6 |
model_id = "microsoft/Magma-8B"
|
|
|
|
|
|
|
7 |
|
8 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
|
9 |
+
model = AutoModelForCausalLM.from_pretrained(
|
10 |
+
model_id,
|
11 |
+
torch_dtype=torch.float16,
|
12 |
+
trust_remote_code=True
|
13 |
+
)
|
14 |
+
|
15 |
+
# Define a simple text-generation function
|
16 |
+
def generate_response(prompt):
|
17 |
+
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
|
18 |
+
with torch.no_grad():
|
19 |
+
outputs = model.generate(**inputs, max_new_tokens=100)
|
20 |
+
return tokenizer.decode(outputs[0], skip_special_tokens=True)
|
|
|
|
|
|
|
21 |
|
22 |
+
# Create Gradio interface
|
23 |
interface = gr.Interface(
|
24 |
+
fn=generate_response,
|
25 |
+
inputs=gr.Textbox(lines=2, placeholder="Enter your prompt here..."),
|
26 |
+
outputs="text",
|
27 |
+
title="Magma-8B Text Generator"
|
|
|
|
|
|
|
|
|
28 |
)
|
29 |
|
30 |
+
# Launch the app (use launch instead of mount_gradio_app)
|
31 |
+
interface.launch()
|