Views
No views yet
Photo of an affirmation card … helps with putting the card in a settingA hand with painted nails holding an affirmation card … will give you a hand holding the card Affirmation card featuring [abstract watercolor] designwill help make the background of the card more interesting (change the aesthetics/medium as you wish)A hand with painted nails holding an affirmation card featuring abstract watercolor design, with bold text "LOREM IPSUM", and "dolor sit amet" written in a script font.Affirmation card that says "No point trying"1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
7pipeline.load_lora_weights('WizWhite/wizard-s-deck-of-affirmation-cards', weight_name='Wizards_SelfLoving_Affirmation_Cards-000001.safetensors')
8image = pipeline('photo of an Affirmation card with big and bold text that says "IF I FALL I WILL", and "bruise" written in a script font
9').images[0]