jjz5463
commited on
Commit
Β·
f13dda6
1
Parent(s):
772f5fb
change back to streamlit
Browse files- README.md +2 -2
- app.py +29 -32
- baseline_utils.py +1 -1
- requirements.txt +1 -1
README.md
CHANGED
|
@@ -3,8 +3,8 @@ title: Diary-AI
|
|
| 3 |
emoji: π
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: blue
|
| 6 |
-
sdk:
|
| 7 |
-
sdk_version: "
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
|
|
|
| 3 |
emoji: π
|
| 4 |
colorFrom: red
|
| 5 |
colorTo: blue
|
| 6 |
+
sdk: streamlit
|
| 7 |
+
sdk_version: "1.38.0"
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
import
|
| 2 |
import openai
|
| 3 |
import json
|
| 4 |
from PIL import Image
|
|
@@ -7,19 +7,30 @@ from baseline_utils import detect_text_in_image, summarize_diary_text, analyze_w
|
|
| 7 |
import glob
|
| 8 |
import os
|
| 9 |
|
| 10 |
-
# Load secrets
|
| 11 |
-
openai_api_key =
|
| 12 |
-
google_service_account_info = json.loads(
|
| 13 |
-
gemini_api_key =
|
| 14 |
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# Function to get Google credentials
|
| 17 |
def get_google_credentials():
|
| 18 |
return service_account.Credentials.from_service_account_info(google_service_account_info)
|
| 19 |
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
diary_image_path = "temp_upload_images/temp_diary_image.png"
|
| 24 |
writer_image_path = "temp_upload_images/temp_writer_image.png"
|
| 25 |
os.makedirs("temp_upload_images", exist_ok=True)
|
|
@@ -30,39 +41,25 @@ def process_images(diary_image, writer_image):
|
|
| 30 |
google_credentials = get_google_credentials()
|
| 31 |
detected_text = detect_text_in_image(diary_image_path, google_credentials)
|
| 32 |
summarized_text = summarize_diary_text(detected_text, openai_api_key)
|
|
|
|
| 33 |
|
| 34 |
# Analyze the writer's image using Gemini API
|
| 35 |
writer_summary = analyze_writer_image(writer_image_path, gemini_api_key)
|
|
|
|
| 36 |
|
| 37 |
# Generate the comic book based on the summaries
|
|
|
|
| 38 |
generate_comic_book(summarized_text, writer_summary, num_pages=4)
|
| 39 |
|
|
|
|
|
|
|
| 40 |
# Assuming generated images are saved as 'comic_book/page_1.png', 'comic_book/page_2.png', etc.
|
| 41 |
image_files = sorted(glob.glob("comic_book/page_*.png")) # Find all the generated comic book pages
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
# Define the Gradio interface
|
| 47 |
-
def gradio_interface(diary_image, writer_image):
|
| 48 |
-
# Process the images and generate comic book pages
|
| 49 |
-
generated_images = process_images(diary_image, writer_image)
|
| 50 |
-
|
| 51 |
-
# Load the images and return them
|
| 52 |
-
images = [Image.open(img) for img in generated_images]
|
| 53 |
-
return images
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
# Set up the Gradio interface
|
| 57 |
-
interface = gr.Interface(
|
| 58 |
-
fn=gradio_interface,
|
| 59 |
-
inputs=[
|
| 60 |
-
gr.Image(label="Upload your handwritten diary image", type="pil"),
|
| 61 |
-
gr.Image(label="Upload a photo of the writer", type="pil"),
|
| 62 |
-
],
|
| 63 |
-
outputs=gr.Gallery(label="Generated Comic Book Pages"),
|
| 64 |
-
title="Handwritten Diary to Comic Book"
|
| 65 |
-
)
|
| 66 |
|
| 67 |
-
|
| 68 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
import openai
|
| 3 |
import json
|
| 4 |
from PIL import Image
|
|
|
|
| 7 |
import glob
|
| 8 |
import os
|
| 9 |
|
| 10 |
+
# Load secrets
|
| 11 |
+
openai_api_key = st.secrets["openai_api_key"]
|
| 12 |
+
google_service_account_info = json.loads(st.secrets["google_service_account"])
|
| 13 |
+
gemini_api_key = st.secrets["gemini_api_key"]
|
| 14 |
|
| 15 |
+
# Initialize OpenAI
|
| 16 |
+
openai.api_key = openai_api_key
|
| 17 |
|
| 18 |
# Function to get Google credentials
|
| 19 |
def get_google_credentials():
|
| 20 |
return service_account.Credentials.from_service_account_info(google_service_account_info)
|
| 21 |
|
| 22 |
+
st.title('Handwritten Diary to Comic Book')
|
| 23 |
+
uploaded_diary = st.file_uploader("Upload your handwritten diary image", type=["png", "jpg", "jpeg"])
|
| 24 |
+
uploaded_writer_image = st.file_uploader("Upload a photo of the writer", type=["png", "jpg", "jpeg"])
|
| 25 |
|
| 26 |
+
if uploaded_diary and uploaded_writer_image:
|
| 27 |
+
st.write("Analyzing your diary and writer...")
|
| 28 |
+
|
| 29 |
+
# Read the uploaded images using file-like objects
|
| 30 |
+
diary_image = Image.open(uploaded_diary)
|
| 31 |
+
writer_image = Image.open(uploaded_writer_image)
|
| 32 |
+
|
| 33 |
+
# Save the file-like objects as image files (optional if needed)
|
| 34 |
diary_image_path = "temp_upload_images/temp_diary_image.png"
|
| 35 |
writer_image_path = "temp_upload_images/temp_writer_image.png"
|
| 36 |
os.makedirs("temp_upload_images", exist_ok=True)
|
|
|
|
| 41 |
google_credentials = get_google_credentials()
|
| 42 |
detected_text = detect_text_in_image(diary_image_path, google_credentials)
|
| 43 |
summarized_text = summarize_diary_text(detected_text, openai_api_key)
|
| 44 |
+
st.write(f"Summarized Diary Text: {summarized_text}")
|
| 45 |
|
| 46 |
# Analyze the writer's image using Gemini API
|
| 47 |
writer_summary = analyze_writer_image(writer_image_path, gemini_api_key)
|
| 48 |
+
st.write(f"Writer Description: {writer_summary}")
|
| 49 |
|
| 50 |
# Generate the comic book based on the summaries
|
| 51 |
+
st.write("Generating comic book images...")
|
| 52 |
generate_comic_book(summarized_text, writer_summary, num_pages=4)
|
| 53 |
|
| 54 |
+
st.write("Comic book generated successfully!")
|
| 55 |
+
|
| 56 |
# Assuming generated images are saved as 'comic_book/page_1.png', 'comic_book/page_2.png', etc.
|
| 57 |
image_files = sorted(glob.glob("comic_book/page_*.png")) # Find all the generated comic book pages
|
| 58 |
|
| 59 |
+
# Display images in 2 columns
|
| 60 |
+
cols = st.columns(2) # Create two columns for the images
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
|
| 62 |
+
for i, image_file in enumerate(image_files):
|
| 63 |
+
with cols[i % 2]: # Alternate between the two columns
|
| 64 |
+
# Display each comic book page in the respective column
|
| 65 |
+
st.image(image_file, caption=image_file.split('/')[-1], use_column_width=True)
|
baseline_utils.py
CHANGED
|
@@ -79,7 +79,7 @@ def generate_comic_book(diary_text, writer_description, num_pages=4):
|
|
| 79 |
"stabilityai/sdxl-turbo",
|
| 80 |
torch_dtype=torch.float16,
|
| 81 |
variant="fp16",
|
| 82 |
-
|
| 83 |
)
|
| 84 |
|
| 85 |
# Check for available device: CUDA, MPS, or CPU
|
|
|
|
| 79 |
"stabilityai/sdxl-turbo",
|
| 80 |
torch_dtype=torch.float16,
|
| 81 |
variant="fp16",
|
| 82 |
+
cache_dir="./SDXL-Turbo"
|
| 83 |
)
|
| 84 |
|
| 85 |
# Check for available device: CUDA, MPS, or CPU
|
requirements.txt
CHANGED
|
@@ -5,5 +5,5 @@ google-generativeai
|
|
| 5 |
diffusers
|
| 6 |
torch
|
| 7 |
gradio
|
| 8 |
-
transformers
|
| 9 |
accelerate
|
|
|
|
| 5 |
diffusers
|
| 6 |
torch
|
| 7 |
gradio
|
| 8 |
+
transformers
|
| 9 |
accelerate
|