forked from tdrussell/diffusion-pipe
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathinference.py
More file actions
278 lines (229 loc) · 12 KB
/
Copy pathinference.py
File metadata and controls
278 lines (229 loc) · 12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
import torch
import os
import glob
import argparse
import re
import random
from PIL import Image
from diffsynth import ModelManager, save_video, VideoData
from custom_wan_pipe import WanVideoPipeline
# Florence model import - required dependency
from transformers import AutoProcessor, AutoModelForCausalLM
# Global variables to store Florence model
florence_model = None
florence_processor = None
def init_florence_model():
"""Initialize Florence model, only needs to be called once"""
global florence_model, florence_processor
if florence_model is not None and florence_processor is not None:
return True # Model already loaded, no need to reload
print("Loading Florence model, please wait...")
device = "cuda" if torch.cuda.is_available() else "cpu"
torch_dtype = torch.float16 if torch.cuda.is_available() else torch.float32
# Load model and processor
florence_model = AutoModelForCausalLM.from_pretrained(
"multimodalart/Florence-2-large-no-flash-attn", torch_dtype=torch_dtype, trust_remote_code=True
).to(device)
florence_processor = AutoProcessor.from_pretrained(
"multimodalart/Florence-2-large-no-flash-attn", trust_remote_code=True
)
print("Florence model loaded successfully")
return True
def generate_caption(image, concept_prefix=""):
"""Use Florence model to generate caption for image"""
global florence_model, florence_processor
if florence_model is None or florence_processor is None:
raise RuntimeError("Florence model not initialized, please call init_florence_model() first")
device = next(florence_model.parameters()).device
torch_dtype = next(florence_model.parameters()).dtype
# If input is a path, read image; if PIL Image object, use directly
if isinstance(image, str):
image = Image.open(image).convert("RGB")
elif hasattr(image, 'convert'):
image = image.convert("RGB")
else:
# If it's a numpy array, convert to PIL Image
if hasattr(image, 'shape'):
image = Image.fromarray(image).convert("RGB")
else:
raise ValueError("Unsupported image format")
prompt = "<DETAILED_CAPTION>"
# Construct input
inputs = florence_processor(text=prompt, images=image, return_tensors="pt").to(device, torch_dtype)
# Generate caption
generated_ids = florence_model.generate(
input_ids=inputs["input_ids"], pixel_values=inputs["pixel_values"], max_new_tokens=1024, num_beams=3
)
generated_text = florence_processor.batch_decode(generated_ids, skip_special_tokens=False)[0]
# Post-processing
parsed_answer = florence_processor.post_process_generation(
generated_text, task=prompt, image_size=(image.width, image.height)
)
caption_text = parsed_answer["<DETAILED_CAPTION>"].replace("The image shows ", "")
# Add concept prefix
if concept_prefix:
caption_text = f"{concept_prefix} {caption_text}"
return caption_text
def find_max_epoch_lora(data_dir, use_additional=False):
"""Find the lora file with maximum epoch"""
lora_dir_name = "lora_additional" if use_additional else "lora"
lora_base_dir = os.path.join(data_dir, lora_dir_name)
if not os.path.exists(lora_base_dir):
if use_additional:
raise FileNotFoundError(f"Additional LoRA directory does not exist: {lora_base_dir}\n"
f"Please train additional LoRA first using: python train.py --config {os.path.join(data_dir, 'configs', 'training_additional.toml')}")
else:
raise FileNotFoundError(f"LoRA directory does not exist: {lora_base_dir}")
# Find all date directories
date_dirs = [d for d in os.listdir(lora_base_dir) if os.path.isdir(os.path.join(lora_base_dir, d))]
if not date_dirs:
raise FileNotFoundError(f"No training directories found in LoRA directory: {lora_base_dir}")
# Find the latest training directory (sorted by name, usually datetime format)
latest_date_dir = sorted(date_dirs)[-1]
date_dir_path = os.path.join(lora_base_dir, latest_date_dir)
# Find epoch directories
epoch_dirs = []
for item in os.listdir(date_dir_path):
item_path = os.path.join(date_dir_path, item)
if os.path.isdir(item_path) and item.startswith("epoch"):
# Extract epoch number
match = re.search(r'epoch(\d+)', item)
if match:
epoch_num = int(match.group(1))
epoch_dirs.append((epoch_num, item_path))
if not epoch_dirs:
raise FileNotFoundError(f"No epoch directories found in {date_dir_path}")
# Find maximum epoch
max_epoch_num, max_epoch_path = max(epoch_dirs, key=lambda x: x[0])
lora_file_path = os.path.join(max_epoch_path, "adapter_model.safetensors")
if not os.path.exists(lora_file_path):
raise FileNotFoundError(f"LoRA file does not exist: {lora_file_path}")
lora_type = "additional" if use_additional else "standard"
print(f"Found {lora_type} LoRA file with maximum epoch: epoch{max_epoch_num} - {lora_file_path}")
return lora_file_path
def find_input_image(data_dir):
"""Find edited image, prioritize png, then jpg"""
png_path = os.path.join(data_dir, "edited_image.png")
jpg_path = os.path.join(data_dir, "edited_image.jpg")
if os.path.exists(png_path):
print(f"Found edited image: {png_path}")
return png_path
elif os.path.exists(jpg_path):
print(f"Found edited image: {jpg_path}")
return jpg_path
else:
raise FileNotFoundError(f"Edited image does not exist, checked the following paths:\n- {png_path}\n- {jpg_path}")
def validate_paths(model_root_dir, data_dir):
"""Validate if paths exist"""
if not os.path.exists(model_root_dir):
raise FileNotFoundError(f"Model root directory does not exist: {model_root_dir}")
if not os.path.exists(data_dir):
raise FileNotFoundError(f"Data directory does not exist: {data_dir}")
# Check required model files
required_files = [
"models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth",
"models_t5_umt5-xxl-enc-bf16.pth",
"Wan2.1_VAE.pth"
]
for file_name in required_files:
file_path = os.path.join(model_root_dir, file_name)
if not os.path.exists(file_path):
raise FileNotFoundError(f"Required model file does not exist: {file_path}")
# Check diffusion model files
diffusion_model_pattern = os.path.join(model_root_dir, "diffusion_pytorch_model*.safetensors")
diffusion_model_files = glob.glob(diffusion_model_pattern)
if not diffusion_model_files:
raise FileNotFoundError(f"No diffusion model files found, pattern: {diffusion_model_pattern}")
def main(model_root_dir, data_dir, use_additional=False):
"""Main function"""
try:
# Validate paths
print("Validating paths...")
validate_paths(model_root_dir, data_dir)
# Infer various paths
print("Inferring paths...")
lora_path = find_max_epoch_lora(data_dir, use_additional=use_additional)
input_image_path = find_input_image(data_dir)
pseudo_video_path = os.path.join(data_dir, "inference_rgb.mp4")
mask_video_path = os.path.join(data_dir, "inference_mask.mp4")
# Check if video files exist
if not os.path.exists(pseudo_video_path):
raise FileNotFoundError(f"Pseudo video file does not exist: {pseudo_video_path}")
if not os.path.exists(mask_video_path):
raise FileNotFoundError(f"Mask video file does not exist: {mask_video_path}")
print(f"Using paths:")
print(f" Model root directory: {model_root_dir}")
print(f" Data directory: {data_dir}")
print(f" LoRA file: {lora_path}")
print(f" Edited image: {input_image_path}")
print(f" Pseudo video: {pseudo_video_path}")
print(f" Mask video: {mask_video_path}")
# Automatically find all safetensors files starting with diffusion_pytorch_model
diffusion_model_pattern = os.path.join(model_root_dir, "diffusion_pytorch_model*.safetensors")
diffusion_model_files = sorted(glob.glob(diffusion_model_pattern))
print("Loading models...")
model_manager = ModelManager(device="cpu")
model_manager.load_models([
os.path.join(model_root_dir, "models_clip_open-clip-xlm-roberta-large-vit-huge-14.pth"),
], torch_dtype=torch.float32)
model_manager.load_models([
diffusion_model_files,
os.path.join(model_root_dir, "models_t5_umt5-xxl-enc-bf16.pth"),
os.path.join(model_root_dir, "Wan2.1_VAE.pth"),
], torch_dtype=torch.bfloat16)
model_manager.load_lora(lora_path, lora_alpha=1.0)
pipe = WanVideoPipeline.from_model_manager(model_manager, torch_dtype=torch.bfloat16, device="cuda")
pipe.enable_vram_management(num_persistent_param_in_dit=0)
# Initialize Florence model
print("Initializing Florence model...")
init_florence_model()
# Load edited image
input_image = Image.open(input_image_path)
# Read concept prefix from prefix.txt
prefix_file = os.path.join(data_dir, 'prefix.txt')
concept_prefix = ""
if os.path.exists(prefix_file):
try:
with open(prefix_file, 'r', encoding='utf-8') as f:
concept_prefix = f.read().strip()
print(f"Read concept prefix from {prefix_file}: {concept_prefix}")
except Exception as e:
print(f"Failed to read prefix.txt file: {e}")
concept_prefix = "p3rs0n," # Use default value
else:
print(f"prefix.txt file not found: {prefix_file}, using default prefix")
concept_prefix = "p3rs0n,"
# Dynamically generate prompt
print("Generating caption for edited image...")
generated_prompt = generate_caption(input_image, concept_prefix=concept_prefix)
print(f"Generated prompt: {generated_prompt}")
# Generate random seed
random_seed = random.randint(0, 2**32 - 1)
print(f"Using random seed: {random_seed}")
print("Starting inference...")
video = pipe(
prompt=generated_prompt,
negative_prompt="Overexposure, static, blurred details, subtitles, paintings, pictures, still, overall gray, worst quality, low quality, JPEG compression residue, ugly, mutilated, redundant fingers, poorly painted hands, poorly painted faces, deformed, disfigured, deformed limbs, fused fingers, cluttered background, three legs, a lot of people in the background, upside down",
input_image=input_image,
pseudo_video_path=pseudo_video_path,
mask_video_path=mask_video_path,
num_inference_steps=30,
seed=random_seed, tiled=True,
# TeaCache parameters
tea_cache_l1_thresh=0.275, # The larger this value is, the faster the speed, but the worse the visual quality.
tea_cache_model_id="Wan2.1-I2V-14B-480P", # Choose one in (Wan2.1-T2V-1.3B, Wan2.1-T2V-14B, Wan2.1-I2V-14B-480P, Wan2.1-I2V-14B-720P).
)
output_path = os.path.join(data_dir, "edited_video.mp4")
save_video(video, output_path, fps=30, quality=5)
print(f"Video saved to: {output_path}")
except Exception as e:
print(f"Error: {e}")
raise
if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Video generation inference script")
parser.add_argument("--model_root_dir", required=True, help="Model root directory path")
parser.add_argument("--data_dir", required=True, help="Data directory path")
parser.add_argument("--additional", action="store_true",
help="Use additional LoRA model from lora_additional directory instead of standard lora directory")
args = parser.parse_args()
main(args.model_root_dir, args.data_dir, use_additional=args.additional)