Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from PIL import Image
|
3 |
+
import replicate
|
4 |
+
import ast
|
5 |
+
import requests
|
6 |
+
import io
|
7 |
+
|
8 |
+
|
9 |
+
API_URL = "https://api-inference.huggingface.co/models/ZB-Tech/Text-to-Image"
|
10 |
+
|
11 |
+
def query(payload):
|
12 |
+
response = requests.post(API_URL, json=payload)
|
13 |
+
return response.content
|
14 |
+
|
15 |
+
st.header("Mirror: AI Stylist")
|
16 |
+
uploaded_file = st.file_uploader("Upload Your Photo", type=["jpg", "jpeg", "png"])
|
17 |
+
image = ""
|
18 |
+
|
19 |
+
if uploaded_file is not None:
|
20 |
+
image = Image.open(uploaded_file)
|
21 |
+
st.image(image, caption="Uploaded Image.", use_column_width=True)
|
22 |
+
|
23 |
+
st.markdown("Generating Fashion Accessories For You...")
|
24 |
+
with st.spinner("Loading..."):
|
25 |
+
prompt = '''
|
26 |
+
You are a personal stylist recommending fashion advice and clothing combinations.
|
27 |
+
Use the person's dressing style, colour of clothes and appearance from the given
|
28 |
+
image to generate three fashion accessories according to the gender of the person
|
29 |
+
in an array format.
|
30 |
+
Examples:
|
31 |
+
Example 1: ["accessory1 name with speicific detail"]
|
32 |
+
'''
|
33 |
+
input = {
|
34 |
+
"image": uploaded_file,
|
35 |
+
"prompt": prompt
|
36 |
+
}
|
37 |
+
|
38 |
+
output = replicate.run(
|
39 |
+
"yorickvp/llava-13b:b5f6212d032508382d61ff00469ddda3e32fd8a0e75dc39d8a4191bb742157fb",
|
40 |
+
input=input,
|
41 |
+
)
|
42 |
+
arr = "".join(output)
|
43 |
+
output = ast.literal_eval(arr)
|
44 |
+
|
45 |
+
for item in output:
|
46 |
+
image_bytes = query({
|
47 |
+
"inputs": item,
|
48 |
+
})
|
49 |
+
|
50 |
+
image = Image.open(io.BytesIO(image_bytes))
|
51 |
+
st.image(image, caption=item, use_column_width=True)
|
52 |
+
st.success("Generated Fashion Accessories!")
|
53 |
+
|