Spaces:
Sleeping
Sleeping
ayoubkirouane
commited on
Commit
•
ac82bcb
1
Parent(s):
5fe5f55
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,12 @@
|
|
1 |
import gradio as gr
|
2 |
-
from transformers import AutoProcessor,
|
3 |
import torch
|
4 |
|
5 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
6 |
checkpoint1 = "ayoubkirouane/git-base-One-Piece"
|
7 |
processor = AutoProcessor.from_pretrained(checkpoint1)
|
8 |
model1 = AutoModelForCausalLM.from_pretrained(checkpoint1)
|
|
|
9 |
def img2cap(image):
|
10 |
input1 = processor(images=image, return_tensors="pt").to(device)
|
11 |
pixel_values1 = input1.pixel_values
|
@@ -13,15 +14,14 @@ def img2cap(image):
|
|
13 |
generated_caption1 = processor.batch_decode(generated_id1, skip_special_tokens=True)[0]
|
14 |
return generated_caption1
|
15 |
|
16 |
-
|
17 |
-
examples = ["1.png" ,"2.png" , "3.png" ]
|
18 |
|
19 |
gr.Interface(
|
20 |
-
img2cap,
|
21 |
-
inputs
|
22 |
-
outputs=
|
23 |
-
title
|
24 |
-
description
|
25 |
examples=examples,
|
26 |
theme="huggingface",
|
27 |
-
).launch(debug=True)
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoProcessor, AutoModelForCausalLM
|
3 |
import torch
|
4 |
|
5 |
device = "cuda" if torch.cuda.is_available() else "cpu"
|
6 |
checkpoint1 = "ayoubkirouane/git-base-One-Piece"
|
7 |
processor = AutoProcessor.from_pretrained(checkpoint1)
|
8 |
model1 = AutoModelForCausalLM.from_pretrained(checkpoint1)
|
9 |
+
|
10 |
def img2cap(image):
|
11 |
input1 = processor(images=image, return_tensors="pt").to(device)
|
12 |
pixel_values1 = input1.pixel_values
|
|
|
14 |
generated_caption1 = processor.batch_decode(generated_id1, skip_special_tokens=True)[0]
|
15 |
return generated_caption1
|
16 |
|
17 |
+
examples = ["1.png", "2.png", "3.png"]
|
|
|
18 |
|
19 |
gr.Interface(
|
20 |
+
fn=img2cap,
|
21 |
+
inputs=gr.Image(type="pil", label="Original Image"),
|
22 |
+
outputs=gr.Textbox(label="The generated caption:"),
|
23 |
+
title="Image Captioning using git-base-One-Piece Model",
|
24 |
+
description="git-base-One-Piece is used to generate Image Caption for the uploaded image.",
|
25 |
examples=examples,
|
26 |
theme="huggingface",
|
27 |
+
).launch(debug=True)
|