Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,168 +1,177 @@
|
|
1 |
-
import
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
import
|
7 |
-
import
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
from
|
14 |
-
from
|
15 |
-
from
|
16 |
-
import
|
17 |
-
from
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
#
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
)
|
167 |
-
|
168 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import multiprocessing
|
2 |
+
|
3 |
+
if __name__ == '__main__':
|
4 |
+
multiprocessing.set_start_method('spawn')
|
5 |
+
|
6 |
+
import spaces # Import spaces at the very beginning
|
7 |
+
import os
|
8 |
+
import pandas as pd
|
9 |
+
import torch
|
10 |
+
import gc
|
11 |
+
import re
|
12 |
+
import random
|
13 |
+
from tqdm.auto import tqdm
|
14 |
+
from collections import deque
|
15 |
+
from optimum.quanto import freeze, qfloat8, quantize
|
16 |
+
from diffusers import FlowMatchEulerDiscreteScheduler, AutoencoderKL
|
17 |
+
from diffusers.models.transformers.transformer_flux import FluxTransformer2DModel
|
18 |
+
from diffusers.pipelines.flux.pipeline_flux import FluxPipeline
|
19 |
+
from transformers import CLIPTextModel, CLIPTokenizer, T5EncoderModel, T5TokenizerFast
|
20 |
+
from transformers import pipeline, AutoModelForCausalLM, AutoTokenizer
|
21 |
+
import gradio as gr
|
22 |
+
from accelerate import Accelerator
|
23 |
+
|
24 |
+
# Instantiate the Accelerator
|
25 |
+
accelerator = Accelerator()
|
26 |
+
|
27 |
+
dtype = torch.bfloat16
|
28 |
+
|
29 |
+
# Set environment variables for local path
|
30 |
+
os.environ['FLUX_DEV'] = '.'
|
31 |
+
os.environ['AE'] = '.'
|
32 |
+
|
33 |
+
bfl_repo = 'black-forest-labs/FLUX.1-schnell'
|
34 |
+
revision = 'refs/pr/1'
|
35 |
+
|
36 |
+
scheduler = FlowMatchEulerDiscreteScheduler.from_pretrained(bfl_repo, subfolder='scheduler', revision=revision)
|
37 |
+
text_encoder = CLIPTextModel.from_pretrained('openai/clip-vit-large-patch14', torch_dtype=dtype)
|
38 |
+
tokenizer = CLIPTokenizer.from_pretrained('openai/clip-vit-large-patch14', torch_dtype=dtype)
|
39 |
+
text_encoder_2 = T5EncoderModel.from_pretrained(bfl_repo, subfolder='text_encoder_2', torch_dtype=dtype, revision=revision)
|
40 |
+
tokenizer_2 = T5TokenizerFast.from_pretrained(bfl_repo, subfolder='tokenizer_2', torch_dtype=dtype, revision=revision)
|
41 |
+
vae = AutoencoderKL.from_pretrained(bfl_repo, subfolder='vae', torch_dtype=dtype, revision=revision)
|
42 |
+
transformer = FluxTransformer2DModel.from_pretrained(bfl_repo, subfolder='transformer', torch_dtype=dtype, revision=revision)
|
43 |
+
|
44 |
+
quantize(transformer, weights=qfloat8)
|
45 |
+
freeze(transformer)
|
46 |
+
quantize(text_encoder_2, weights=qfloat8)
|
47 |
+
freeze(text_encoder_2)
|
48 |
+
|
49 |
+
pipe = FluxPipeline(
|
50 |
+
scheduler=scheduler,
|
51 |
+
text_encoder=text_encoder,
|
52 |
+
tokenizer=tokenizer,
|
53 |
+
text_encoder_2=None,
|
54 |
+
tokenizer_2=tokenizer_2,
|
55 |
+
vae=vae,
|
56 |
+
transformer=None,
|
57 |
+
)
|
58 |
+
pipe.text_encoder_2 = text_encoder_2
|
59 |
+
pipe.transformer = transformer
|
60 |
+
pipe.enable_model_cpu_offload()
|
61 |
+
|
62 |
+
# Create a directory to save the generated images
|
63 |
+
output_dir = 'generated_images'
|
64 |
+
os.makedirs(output_dir, exist_ok=True)
|
65 |
+
|
66 |
+
# Function to generate a detailed visual description prompt
|
67 |
+
def generate_description_prompt(subject, user_prompt, text_generator):
|
68 |
+
prompt = f"write concise vivid visual description enclosed in brackets like [ <description> ] less than 100 words of {user_prompt} different from {subject}. "
|
69 |
+
try:
|
70 |
+
generated_text = text_generator(prompt, max_length=160, num_return_sequences=1, truncation=True)[0]['generated_text']
|
71 |
+
generated_description = re.sub(rf'{re.escape(prompt)}\s*', '', generated_text).strip() # Remove the prompt from the generated text
|
72 |
+
return generated_description if generated_description else None
|
73 |
+
except Exception as e:
|
74 |
+
print(f"Error generating description for subject '{subject}': {e}")
|
75 |
+
return None
|
76 |
+
|
77 |
+
# Function to parse descriptions from a given text
|
78 |
+
def parse_descriptions(text):
|
79 |
+
# Find all descriptions enclosed in brackets
|
80 |
+
descriptions = re.findall(r'\[([^\[\]]+)\]', text)
|
81 |
+
# Filter descriptions with at least 3 words
|
82 |
+
descriptions = [desc.strip() for desc in descriptions if len(desc.split()) >= 3]
|
83 |
+
return descriptions
|
84 |
+
|
85 |
+
# Seed words pool
|
86 |
+
seed_words = []
|
87 |
+
|
88 |
+
used_words = set()
|
89 |
+
paused = False
|
90 |
+
|
91 |
+
# Queue to store parsed descriptions
|
92 |
+
parsed_descriptions_queue = deque()
|
93 |
+
|
94 |
+
# Usage limits
|
95 |
+
MAX_DESCRIPTIONS = 10
|
96 |
+
MAX_IMAGES = 5
|
97 |
+
|
98 |
+
@spaces.GPU
|
99 |
+
def generate_descriptions(user_prompt, seed_words_input, batch_size=100, max_iterations=50):
|
100 |
+
global paused
|
101 |
+
descriptions = []
|
102 |
+
description_queue = deque()
|
103 |
+
iteration_count = 0
|
104 |
+
|
105 |
+
# Initialize the text generation pipeline with 16-bit precision
|
106 |
+
print("Initializing the text generation pipeline with 16-bit precision...")
|
107 |
+
model_name = 'meta-llama/Meta-Llama-3.1-8B-Instruct'
|
108 |
+
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.float16, device_map='auto')
|
109 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
110 |
+
text_generator = pipeline('text-generation', model=model, tokenizer=tokenizer)
|
111 |
+
print("Text generation pipeline initialized with 16-bit precision.")
|
112 |
+
|
113 |
+
# Populate the seed_words array with user input
|
114 |
+
seed_words.extend(re.findall(r'"(.*?)"', seed_words_input))
|
115 |
+
|
116 |
+
while iteration_count < max_iterations and len(parsed_descriptions_queue) < MAX_DESCRIPTIONS:
|
117 |
+
if paused:
|
118 |
+
break
|
119 |
+
|
120 |
+
# Select a subject that has not been used
|
121 |
+
available_subjects = [word for word in seed_words if word not in used_words]
|
122 |
+
if not available_subjects:
|
123 |
+
print("No more available subjects to use.")
|
124 |
+
break
|
125 |
+
|
126 |
+
subject = random.choice(available_subjects)
|
127 |
+
generated_description = generate_description_prompt(subject, user_prompt, text_generator)
|
128 |
+
|
129 |
+
if generated_description:
|
130 |
+
# Remove any offending symbols
|
131 |
+
clean_description = generated_description.encode('ascii', 'ignore').decode('ascii')
|
132 |
+
description_queue.append({'subject': subject, 'description': clean_description})
|
133 |
+
|
134 |
+
# Print the generated description to the command line
|
135 |
+
print(f"Generated description for subject '{subject}': {clean_description}")
|
136 |
+
|
137 |
+
# Update used words and seed words
|
138 |
+
used_words.add(subject)
|
139 |
+
seed_words.append(clean_description) # Add the generated description to the seed bank array
|
140 |
+
|
141 |
+
# Parse and append descriptions every 3 iterations
|
142 |
+
if iteration_count % 3 == 0:
|
143 |
+
parsed_descriptions = parse_descriptions(clean_description)
|
144 |
+
parsed_descriptions_queue.extend(parsed_descriptions)
|
145 |
+
|
146 |
+
iteration_count += 1
|
147 |
+
|
148 |
+
return list(parsed_descriptions_queue)
|
149 |
+
|
150 |
+
@spaces.GPU(duration=120)
|
151 |
+
def generate_images(parsed_descriptions):
|
152 |
+
# If there are fewer than MAX_IMAGES descriptions, use whatever is available
|
153 |
+
if len(parsed_descriptions) < MAX_IMAGES:
|
154 |
+
prompts = parsed_descriptions
|
155 |
+
else:
|
156 |
+
prompts = [parsed_descriptions.pop(0) for _ in range(MAX_IMAGES)]
|
157 |
+
|
158 |
+
# Generate images from the parsed descriptions
|
159 |
+
images = []
|
160 |
+
for prompt in prompts:
|
161 |
+
images.extend(pipe(prompt, num_images=1).images)
|
162 |
+
|
163 |
+
return images
|
164 |
+
|
165 |
+
# Create Gradio Interface
|
166 |
+
def combined_function(user_prompt, seed_words_input):
|
167 |
+
parsed_descriptions = generate_descriptions(user_prompt, seed_words_input)
|
168 |
+
images = generate_images(parsed_descriptions)
|
169 |
+
return images
|
170 |
+
|
171 |
+
interface = gr.Interface(
|
172 |
+
fn=combined_function,
|
173 |
+
inputs=[gr.Textbox(lines=2, placeholder="Enter a prompt for descriptions..."), gr.Textbox(lines=2, placeholder='Enter seed words in quotes, e.g., "cat", "dog", "sunset"...')],
|
174 |
+
outputs=gr.Gallery()
|
175 |
+
)
|
176 |
+
|
177 |
+
interface.launch()
|