Spaces:
Running
on
Zero
Running
on
Zero
File size: 4,983 Bytes
b155b2e e3e5f9e |
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 |
# Open Source Model Licensed under the Apache License Version 2.0
# and Other Licenses of the Third-Party Components therein:
# The below Model in this distribution may have been modified by THL A29 Limited
# ("Tencent Modifications"). All Tencent Modifications are Copyright (C) 2024 THL A29 Limited.
# Copyright (C) 2024 THL A29 Limited, a Tencent company. All rights reserved.
# The below software and/or models in this distribution may have been
# modified by THL A29 Limited ("Tencent Modifications").
# All Tencent Modifications are Copyright (C) THL A29 Limited.
# Hunyuan 3D is licensed under the TENCENT HUNYUAN NON-COMMERCIAL LICENSE AGREEMENT
# except for the third-party components listed below.
# Hunyuan 3D does not impose any additional limitations beyond what is outlined
# in the repsective licenses of these third-party components.
# Users must comply with all terms and conditions of original licenses of these third-party
# components and must ensure that the usage of the third party components adheres to
# all relevant laws and regulations.
# For avoidance of doubts, Hunyuan 3D means the large language models and
# their software and algorithms, including trained model weights, parameters (including
# optimizer states), machine-learning model code, inference-enabling code, training-enabling code,
# fine-tuning enabling code and other elements of the foregoing made publicly available
# by Tencent in accordance with TENCENT HUNYUAN COMMUNITY LICENSE AGREEMENT.
import os , sys
sys.path.insert(0, f"{os.path.dirname(os.path.dirname(os.path.abspath(__file__)))}")
import torch
from diffusers import HunyuanDiTPipeline, AutoPipelineForText2Image
from infer.utils import seed_everything, timing_decorator, auto_amp_inference
from infer.utils import get_parameter_number, set_parameter_grad_false
class Text2Image():
def __init__(self, pretrain="weights/hunyuanDiT", device="cuda:0", save_memory=None):
'''
save_memory: if GPU memory is low, can set it
'''
self.save_memory = save_memory
self.device = device
self.pipe = AutoPipelineForText2Image.from_pretrained(
pretrain,
torch_dtype = torch.float16,
enable_pag = True,
pag_applied_layers = ["blocks.(16|17|18|19)"]
)
set_parameter_grad_false(self.pipe.transformer)
print('text2image transformer model', get_parameter_number(self.pipe.transformer))
if not save_memory:
self.pipe = self.pipe.to(device)
self.neg_txt = "文本,特写,裁剪,出框,最差质量,低质量,JPEG伪影,PGLY,重复,病态,残缺,多余的手指,变异的手," \
"画得不好的手,画得不好的脸,变异,畸形,模糊,脱水,糟糕的解剖学,糟糕的比例,多余的肢体,克隆的脸," \
"毁容,恶心的比例,畸形的肢体,缺失的手臂,缺失的腿,额外的手臂,额外的腿,融合的手指,手指太多,长脖子"
@torch.no_grad()
@timing_decorator('text to image')
@auto_amp_inference
def __call__(self, *args, **kwargs):
if self.save_memory:
self.pipe = self.pipe.to(self.device)
torch.cuda.empty_cache()
res = self.call(*args, **kwargs)
self.pipe = self.pipe.to("cpu")
else:
res = self.call(*args, **kwargs)
torch.cuda.empty_cache()
return res
def call(self, prompt, seed=0, steps=25):
'''
args:
prompr: str
seed: int
steps: int
return:
rgb: PIL.Image
'''
print("prompt is:", prompt)
prompt = prompt + ",白色背景,3D风格,最佳质量"
seed_everything(seed)
generator = torch.Generator(device=self.device)
if seed is not None: generator = generator.manual_seed(int(seed))
rgb = self.pipe(prompt=prompt, negative_prompt=self.neg_txt, num_inference_steps=steps,
pag_scale=1.3, width=1024, height=1024, generator=generator, return_dict=False)[0][0]
torch.cuda.empty_cache()
return rgb
if __name__ == "__main__":
import argparse
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument("--text2image_path", default="weights/hunyuanDiT", type=str)
parser.add_argument("--text_prompt", default="", type=str)
parser.add_argument("--output_img_path", default="./outputs/test/img.jpg", type=str)
parser.add_argument("--device", default="cuda:0", type=str)
parser.add_argument("--seed", default=0, type=int)
parser.add_argument("--steps", default=25, type=int)
return parser.parse_args()
args = get_args()
text2image_model = Text2Image(device=args.device)
rgb_img = text2image_model(args.text_prompt, seed=args.seed, steps=args.steps)
rgb_img.save(args.output_img_path)
|