forked from tencent-ailab/IP-Adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinference.py
More file actions
297 lines (251 loc) · 11.4 KB
/
inference.py
File metadata and controls
297 lines (251 loc) · 11.4 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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
import os
import argparse
from typing import List, Optional
from PIL import Image
import torch
from diffusers import StableDiffusionPipeline, DDIMScheduler, AutoencoderKL
import open_clip
from transformers import PretrainedConfig
from rshf.taxabind import TaxaBind
# import your improved class (the one we discussed that supports model_type='bioclip'
# and accepts bioclip tokens / taxa_texts)
from ip_adapter import IPAdapter
from tqdm import tqdm
import json
from transformers import CLIPTokenizer, CLIPTextModelWithProjection
# ---------- Utilities ----------
def make_scheduler() -> DDIMScheduler:
return DDIMScheduler(
num_train_timesteps=1000,
beta_start=0.00085,
beta_end=0.012,
beta_schedule="scaled_linear",
clip_sample=False,
set_alpha_to_one=False,
steps_offset=1,
)
def make_pipe(base_model: str, vae_model: Optional[str], device: str) -> StableDiffusionPipeline:
vae = AutoencoderKL.from_pretrained(vae_model).to(dtype=torch.float16) if vae_model else None
pipe = StableDiffusionPipeline.from_pretrained(
base_model,
torch_dtype=torch.float16,
scheduler=make_scheduler(),
vae=vae,
feature_extractor=None,
safety_checker=None,
).to(device)
return pipe
def image_grid(imgs: List[Image.Image], rows: int, cols: int) -> Image.Image:
assert len(imgs) == rows * cols
w, h = imgs[0].size
grid = Image.new("RGB", size=(cols * w, rows * h))
for i, im in enumerate(imgs):
grid.paste(im, box=((i % cols) * w, (i // cols) * h))
return grid
def save_images(images: List[Image.Image], out_dir: str, grid_name: str = "grid.png", cols: int = 4):
os.makedirs(out_dir, exist_ok=True)
for i, im in enumerate(images):
im.save(os.path.join(out_dir, f"img_{i:02d}.png"))
rows = (len(images) + cols - 1) // cols
grid = image_grid(images, rows, cols)
grid.save(os.path.join(out_dir, grid_name))
def save_images_per_class(images, save_dir, class_tag):
"""Save images for iNat dataset - original format."""
os.makedirs(save_dir, exist_ok=True)
for i, im in enumerate(images):
im.save(os.path.join(save_dir, f"{class_tag}_sample{i:02d}.png"))
def save_images_fishnet(images, save_dir, taxonomic_name, num_samples):
"""Save images for FishNet dataset - uses taxonomic name with underscores.
Args:
images: List of PIL images
save_dir: Directory to save images
taxonomic_name: Full taxonomic name (will be converted to filename)
num_samples: Number of samples being generated
"""
os.makedirs(save_dir, exist_ok=True)
base_filename = taxonomic_name.replace(" ", "_")
for i, im in enumerate(images):
if num_samples == 1:
filename = f"{base_filename}.png"
else:
filename = f"{base_filename}_sample_{i+1:03d}.png"
im.save(os.path.join(save_dir, filename))
def class_dir_from_image_path(rel_path: str) -> str:
"""
Given e.g.:
train/04486_Animalia_..._immutabilis/f9f0....jpg
return:
04486_Animalia_..._immutabilis
"""
return os.path.basename(os.path.dirname(rel_path))
# ---------- CLI ----------
def parse_args():
p = argparse.ArgumentParser("IP-Adapter Inference (BioCLIP)")
p.add_argument("--base_model", default="runwayml/stable-diffusion-v1-5")
p.add_argument("--vae_model", default="stabilityai/sd-vae-ft-mse")
p.add_argument("--ip_ckpt", required=True, help="Path to ip_adapter.bin or ip_adapter.safetensors")
# BioCLIP inputs
# p.add_argument("--taxa", nargs="+", required=True,help="One or more taxonomy strings, e.g. 'Animalia Chordata Aves ...'")
# Generation params
p.add_argument("--steps", type=int, default=50)
p.add_argument("--guidance_scale", type=float, default=3.5, help="guidance scale")
p.add_argument("--scale", type=float, default=1.0, help="scale")
p.add_argument("--num_samples", type=int, default=10, help="images per prompt")
p.add_argument("--seed", type=int, default=42)
p.add_argument("--out_dir", default="outputs_bioclip")
p.add_argument("--num_tokens", type=int, default=4, help="must match training")
p.add_argument("--prompt", type=str, default=None, help="Prompt for image generation (optional).")
p.add_argument("--taxonomic_prompt", action="store_true", help="If set, use taxonomic name as prompt.")
p.add_argument("--levels", type=int, default=7, help="Taxonomic levels to use (1=kingdom,...7=species).")
p.add_argument("--json_file", required=True, help="Path to JSON list of dicts.")
p.add_argument("--model_type", type=str, default="bioclip", choices=["bioclip", "taxabind", "location", "clip", "taxa_loc_seq_concat", "loc_taxa_seq_concat", "bioclip_clip"], help="Which model type was used during IP-Adapter training?")
p.add_argument("--dataset", type=str, default="inat", choices=["inat", "fishnet"], help="Dataset type: 'inat' uses folder from image path, 'fishnet' uses taxonomic name")
return p.parse_args()
# ---------- Main ----------
@torch.inference_mode()
def main():
args = parse_args()
device = "cuda" if torch.cuda.is_available() else "cpu"
# SD pipeline
pipe = make_pipe(args.base_model, args.vae_model, device)
# BioCLIP/TaxaBind models and tokenizers
bioclip_model, _, _ = open_clip.create_model_and_transforms("hf-hub:imageomics/bioclip-2")
bioclip_tok = open_clip.get_tokenizer("hf-hub:imageomics/bioclip-2")
config = PretrainedConfig.from_pretrained("MVRL/taxabind-config")
taxabind = TaxaBind(config)
location_encoder = taxabind.get_location_encoder().eval()
taxabind_image_text_model = taxabind.get_image_text_encoder().eval()
taxabind_tokenizer = taxabind.get_tokenizer()
if args.model_type == "bioclip":
tokenizer = bioclip_tok
elif args.model_type == "taxabind" or args.model_type == "taxa_loc_seq_concat" or args.model_type == "loc_taxa_seq_concat":
tokenizer = taxabind_tokenizer
elif args.model_type == "clip":
clip_ckpt = "openai/clip-vit-large-patch14"
tokenizer = CLIPTokenizer.from_pretrained(clip_ckpt)
clip_text_with_proj = CLIPTextModelWithProjection.from_pretrained(clip_ckpt).eval()
elif args.model_type == "bioclip_clip":
clip_ckpt = "openai/clip-vit-large-patch14"
tokenizer = CLIPTokenizer.from_pretrained(clip_ckpt)
clip_text_with_proj = CLIPTextModelWithProjection.from_pretrained(clip_ckpt).eval()
bioclip_tokenizer = bioclip_tok
# Load JSON
with open(args.json_file, "r") as f:
items = json.load(f)
os.makedirs(args.out_dir, exist_ok=True)
# de-duplicate by taxonomic_name
seen = set()
unique_items = []
for ex in items:
tax = ex["taxonomic_name"]
if tax not in seen:
seen.add(tax)
unique_items.append(ex)
print(f"Found {len(unique_items)} unique taxonomic names (from {len(items)} rows).")
# IP-Adapter wrapper
if args.model_type == "clip":
print("Using CLIP model for IP-Adapter...")
ip_model = IPAdapter(
pipe,
image_encoder_path=None,
ip_ckpt=args.ip_ckpt,
device=device,
model_type=args.model_type,
bioclip=clip_text_with_proj,
taxabind=taxabind_image_text_model,
location_encoder=location_encoder
)
elif args.model_type == "bioclip_clip":
print("Using BioCLIP + CLIP model for IP-Adapter...")
ip_model = IPAdapter(
pipe,
image_encoder_path=None,
ip_ckpt=args.ip_ckpt,
device=device,
model_type=args.model_type,
bioclip=bioclip_model,
taxabind=clip_text_with_proj,
location_encoder=location_encoder
)
else:
ip_model = IPAdapter(
pipe,
image_encoder_path=None,
ip_ckpt=args.ip_ckpt,
device=device,
model_type=args.model_type,
bioclip=bioclip_model,
taxabind=taxabind_image_text_model,
location_encoder=location_encoder
)
for idx, entry in tqdm(enumerate(unique_items, start=1), total=len(unique_items)):
taxa_name = entry["taxonomic_name"]
location = torch.tensor([entry["latitude"], entry["longitude"]])
if args.levels < 7:
taxa_parts = taxa_name.split(" ")
taxa_name = " ".join(taxa_parts[: args.levels])
# Determine folder and save strategy based on dataset type
if args.dataset == "fishnet":
# For FishNet: use taxonomic_name with spaces replaced by underscores as folder
folder_name = taxa_name.replace(" ", "_")
folder_name = folder_name.replace("/", "-")
save_dir = os.path.join(args.out_dir, folder_name)
else:
# For iNat: use folder from image path (original behavior)
rel_img_path = entry["image_file"]
class_dir = class_dir_from_image_path(rel_img_path)
save_dir = os.path.join(args.out_dir, class_dir)
if args.model_type == "bioclip" or args.model_type == "taxabind":
tokens = tokenizer(taxa_name).to(device)
elif args.model_type == "location":
tokens = location.unsqueeze(0).to(device)
elif args.model_type == "clip":
tokens = tokenizer(
taxa_name,
max_length=tokenizer.model_max_length,
padding="max_length",
truncation=True,
return_tensors="pt"
).input_ids
tokens = tokens.to(device)
elif args.model_type == "taxa_loc_seq_concat" or args.model_type == "loc_taxa_seq_concat":
taxa_tokens = tokenizer(taxa_name).to(device)
location = location.unsqueeze(0).to(device)
tokens = (taxa_tokens, location)
elif args.model_type == "bioclip_clip":
bioclip_tokens = bioclip_tokenizer(taxa_name).to(device)
clip_tokens = tokenizer(
taxa_name,
max_length=tokenizer.model_max_length,
padding="max_length",
truncation=True,
return_tensors="pt"
).input_ids
clip_tokens = clip_tokens.to(device)
tokens = (bioclip_tokens, clip_tokens)
# Generate images
if args.taxonomic_prompt:
prompt = 'best quality, high quality photo of ' + taxa_name
else:
prompt = args.prompt
images = ip_model.generate(
pil_image=tokens,
num_samples=args.num_samples,
num_inference_steps=args.steps,
seed=args.seed,
guidance_scale=args.guidance_scale,
prompt=prompt,
scale=args.scale,
)
# Save images using appropriate function
if args.dataset == "fishnet":
taxa_name = taxa_name.replace("/", "-")
save_images_fishnet(images, save_dir, taxa_name, args.num_samples)
else:
save_images_per_class(images, save_dir, class_dir)
# print(f"[{idx}/{len(unique_items[:20])}] {taxa_name}")
print(f" Saved {len(images)} images -> {save_dir}")
print("Done.")
if __name__ == "__main__":
main()
# python inference.py --ip_ckpt <path>/ip_adapter.bin --json_file <train_json> --out_dir /scratch/bio_diffusion/ip-adapter_runs/samples/<run> --num_samples 10 --model_type bioclip