模型:
Nihirc/Prompt2MedImage
Prompt2MedImage是一个潜在的文本到图像扩散模型,它在ROCO数据集的医学影像上进行了微调。
这里的权重是用于与?Diffusers库一起使用的。
此模型是使用Amazon SageMaker和Hugging Face深度学习容器进行训练的。
该模型是开放访问的,可供所有人使用,并具有"Do What the F*ck You want to"公共许可证,进一步指定了权利和使用方式。
pip install diffusers transformers
使用默认PNDM调度程序运行管道:
import torch from diffusers import StableDiffusionPipeline model_id = "Nihirc/Prompt2MedImage" device = "cuda" pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) pipe = pipe.to(device) prompt = "Showing the subtrochanteric fracture in the porotic bone." image = pipe(prompt).images[0] image.save("porotic_bone_fracture.png")
O. Pelka, S. Koitka, J. Rückert, F. Nensa, C.M. Friedrich, "Radiology Objects in COntext (ROCO): A Multimodal Image Dataset". MICCAI Workshop on Large-scale Annotation of Biomedical Data and Expert Label Synthesis (LABELS) 2018, September 16, 2018, Granada, Spain. Lecture Notes on Computer Science (LNCS), vol. 11043, pp. 180-189, Springer Cham, 2018. doi: 10.1007/978-3-030-01364-6_20