Tamerstito commited on
Commit
04dcd6c
·
verified ·
1 Parent(s): 2693917

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -6
app.py CHANGED
@@ -1,7 +1,16 @@
1
- # When prompted for a password, use an access token with write permissions.
2
- # Generate one from your settings: https://huggingface.co/settings/tokens
3
- # git clone https://huggingface.co/spaces/Tamerstito/vhs-intro-ai
4
- import streamlit as st
5
 
6
- x = st.slider('Select a value')
7
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from transformers import pipeline
 
 
3
 
4
+ pipe = pipeline("image-to-text",
5
+ model="Salesforce/blip-image-captioning-base")
6
+
7
+
8
+ def launch(input):
9
+ out = pipe(input)
10
+ return out[0]['generated_text']
11
+
12
+ iface = gr.Interface(launch,
13
+ inputs=gr.Image(type='pil'),
14
+ outputs="text")
15
+
16
+ iface.launch()