DreamBooth model for the lgd concept trained by BoHu370 on the BoHu370/Land_Grandfather_v1 dataset.

This is a Stable Diffusion model fine-tuned on the lgd concept with DreamBooth. It can be used by modifying the instance_prompt: a photo of lgd old man

This model was created as part of the DreamBooth Hackathon 🔥. Visit the organisation page for instructions on how to take part!

Description

This is a Stable Diffusion model fine-tuned on old man images.

The images is from the game Black Myth WUKONG.

Usage

from diffusers import StableDiffusionPipeline

pipe = StableDiffusionPipeline.from_pretrained('BoHu370/lgd-old-man')

prompt = f"a photo of lgd old man playing computer game"
guidance_scale = 5
num_cols = 2
all_images = []
for _ in range(num_cols):
    images = pipe(prompt, guidance_scale=guidance_scale).images
    all_images.extend(images)

image_grid(all_images, 1, num_cols)
Downloads last month
0
Inference Examples
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social visibility and check back later, or deploy to Inference Endpoints (dedicated) instead.