Spaces:
No application file
No application file
File size: 9,986 Bytes
6755a2d |
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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 |
from copy import deepcopy
import numpy as np
import random
import json
from .attributes import (
MultiAttr2Text,
AttriributeIsText,
AttributeIsTextAndName,
PresetMultiAttr2Text,
)
from .style import Style
from .render import Render
from . import AttrRegister
__all__ = [
"Age",
"Sex",
"Singing",
"Country",
"Lighting",
"Headwear",
"Eyes",
"Irises",
"Hair",
"Skin",
"Face",
"Smile",
"Expression",
"Clothes",
"Nose",
"Mouth",
"Beard",
"Necklace",
"KeyWords",
"InsightFace",
"Caption",
"Env",
"Decoration",
"Festival",
"SpringHeadwear",
"SpringClothes",
"Animal",
]
@AttrRegister.register
class Sex(AttriributeIsText):
name = "sex"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Headwear(AttriributeIsText):
name = "headwear"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Expression(AttriributeIsText):
name = "expression"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class KeyWords(AttriributeIsText):
name = "keywords"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Singing(AttriributeIsText):
def __init__(self, name: str = "singing") -> None:
super().__init__(name)
@AttrRegister.register
class Country(AttriributeIsText):
name = "country"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Clothes(AttriributeIsText):
name = "clothes"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Age(AttributeIsTextAndName):
name = "age"
def __init__(self, name: str = None) -> None:
super().__init__(name)
def __call__(self, attributes: str) -> str:
if not isinstance(attributes, str):
attributes = str(attributes)
attributes = attributes.split(",")
text = ", ".join(
["{}-year-old".format(attr) if attr != "" else "" for attr in attributes]
)
return text
@AttrRegister.register
class Eyes(AttributeIsTextAndName):
name = "eyes"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Hair(AttributeIsTextAndName):
name = "hair"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Background(AttributeIsTextAndName):
name = "background"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Skin(AttributeIsTextAndName):
name = "skin"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Face(AttributeIsTextAndName):
name = "face"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Smile(AttributeIsTextAndName):
name = "smile"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Nose(AttributeIsTextAndName):
name = "nose"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Mouth(AttributeIsTextAndName):
name = "mouth"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Beard(AttriributeIsText):
name = "beard"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Necklace(AttributeIsTextAndName):
name = "necklace"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Irises(AttributeIsTextAndName):
name = "irises"
def __init__(self, name: str = None) -> None:
super().__init__(name)
@AttrRegister.register
class Lighting(AttributeIsTextAndName):
name = "lighting"
def __init__(self, name: str = None) -> None:
super().__init__(name)
PresetPortraitAttributes = [
Age,
Sex,
Singing,
Country,
Lighting,
Headwear,
Eyes,
Irises,
Hair,
Skin,
Face,
Smile,
Expression,
Clothes,
Nose,
Mouth,
Beard,
Necklace,
Style,
KeyWords,
Render,
]
class PortraitMultiAttr2Text(PresetMultiAttr2Text):
preset_attributes = PresetPortraitAttributes
def __init__(self, funcs: list = None, use_preset=True, name="portrait") -> None:
super().__init__(funcs, use_preset, name)
@AttrRegister.register
class InsightFace(AttriributeIsText):
name = "insight_face"
face_render_dict = {
"boy": "handsome,elegant",
"girl": "gorgeous,kawaii,colorful",
}
key_words = "delicate face,beautiful eyes"
def __call__(self, attributes: str) -> str:
"""将insight faces 检测的结果转化成prompt
convert the results of insight faces detection to prompt
Args:
face_list (_type_): _description_
Returns:
_type_: _description_
"""
attributes = json.loads(attributes)
face_list = attributes["info"]
if len(face_list) == 0:
return ""
if attributes["image_type"] == "body":
for face in face_list:
if "black" in face and face["black"]:
return "african,dark skin"
return ""
gender_dict = {"girl": 0, "boy": 0}
face_render_list = []
black = False
for face in face_list:
if face["ratio"] < 0.02:
continue
if face["gender"] == 0:
gender_dict["girl"] += 1
face_render_list.append(self.face_render_dict["girl"])
else:
gender_dict["boy"] += 1
face_render_list.append(self.face_render_dict["boy"])
if "black" in face and face["black"]:
black = True
if len(face_render_list) == 0:
return ""
elif len(face_render_list) == 1:
solo = True
else:
solo = False
gender = ""
for g, num in gender_dict.items():
if num > 0:
if gender:
gender += ", "
gender += "{}{}".format(num, g)
if num > 1:
gender += "s"
face_render_list = ",".join(face_render_list)
face_render_list = face_render_list.split(",")
face_render = list(set(face_render_list))
face_render.sort(key=face_render_list.index)
face_render = ",".join(face_render)
if gender_dict["girl"] == 0:
face_render = "male focus," + face_render
insightface_prompt = "{},{},{}".format(gender, face_render, self.key_words)
if solo:
insightface_prompt += ",solo"
if black:
insightface_prompt = "african,dark skin," + insightface_prompt
return insightface_prompt
@AttrRegister.register
class Caption(AttriributeIsText):
name = "caption"
@AttrRegister.register
class Env(AttriributeIsText):
name = "env"
envs_list = [
"east asian architecture",
"fireworks",
"snow, snowflakes",
"snowing, snowflakes",
]
def __call__(self, attributes: str = None) -> str:
if attributes != "" and attributes != " " and attributes is not None:
return attributes
else:
return random.choice(self.envs_list)
@AttrRegister.register
class Decoration(AttriributeIsText):
name = "decoration"
def __init__(self, name: str = None) -> None:
self.decoration_list = [
"chinese knot",
"flowers",
"food",
"lanterns",
"red envelop",
]
super().__init__(name)
def __call__(self, attributes: str = None) -> str:
if attributes != "" and attributes != " " and attributes is not None:
return attributes
else:
return random.choice(self.decoration_list)
@AttrRegister.register
class Festival(AttriributeIsText):
name = "festival"
festival_list = ["new year"]
def __init__(self, name: str = None) -> None:
super().__init__(name)
def __call__(self, attributes: str = None) -> str:
if attributes != "" and attributes != " " and attributes is not None:
return attributes
else:
return random.choice(self.festival_list)
@AttrRegister.register
class SpringHeadwear(AttriributeIsText):
name = "spring_headwear"
headwear_list = ["rabbit ears", "rabbit ears, fur hat"]
def __call__(self, attributes: str = None) -> str:
if attributes != "" and attributes != " " and attributes is not None:
return attributes
else:
return random.choice(self.headwear_list)
@AttrRegister.register
class SpringClothes(AttriributeIsText):
name = "spring_clothes"
clothes_list = [
"mittens,chinese clothes",
"mittens,fur trim",
"mittens,red scarf",
"mittens,winter clothes",
]
def __call__(self, attributes: str = None) -> str:
if attributes != "" and attributes != " " and attributes is not None:
return attributes
else:
return random.choice(self.clothes_list)
@AttrRegister.register
class Animal(AttriributeIsText):
name = "animal"
animal_list = ["rabbit", "holding rabbits"]
def __call__(self, attributes: str = None) -> str:
if attributes != "" and attributes != " " and attributes is not None:
return attributes
else:
return random.choice(self.animal_list)
|