1from diffusers import DiffusionPipeline
2import torch
3
4pipeline = DiffusionPipeline.from_pretrained("jpholanda/SD-coverart-v1", torch_dtype=torch.float16)
5prompt = 'Cover art for a disco album titled "My Love", by "Meux Amis"'
6image = pipeline(prompt).images[0]
7image.save("my_image.png")
More information on all the CLI arguments and the environment are available on your
wandb run page.
Used the
MusicBrainz dataset for the metadata (title, genre, artist)
and the
Cover Art Archive for the cover arts.