Edit model card

islamicdiffusion Dreambooth model trained by Falah

With Stable Diffusion DreamBooth, we can now create AI art generation images using our own trained images. in this model, we can generate images with Islamic landscapes or female or male ones as popular images or just about anything you can think of Test the concept via A1111 Colab fast-Colab-A1111

Sample pictures of this concept with the simple and easy prompts:

any prompt and add word islamidiffusion style :

"home islamicdiffusion"

"home islamicdiffusion"

"Bearded old man, handsome, rugged, sadness + crying, Arabic, award-winning photography, nikon d750 islamicdiffusion"

"Bearded old man, handsome, rugged, sadness + crying, Arabic, award-winning photography, nikon d750 islamicdiffusion"

🧨 Diffusers

This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion Pipeline.

from diffusers import StableDiffusionPipeline
import torch
model_id = "Falah/islamicdiffusion"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = ""Bearded old man, handsome, rugged, sadness + crying, Arabic, award-winning photography, nikon d750 islamicdiffusion" 
image = pipe(prompt).images[0]
image.save("./result.jpg")
Downloads last month
98