| --- |
| license: creativeml-openrail-m |
| tags: |
| - pytorch |
| - diffusers |
| - stable-diffusion |
| - text-to-image |
| - diffusion-models-class |
| - dreambooth-hackathon |
| - BLACK-MTYH-WUKONG |
| widget: |
| - text: a photo of lgd old man playing computer game |
| datasets: |
| - BoHu370/Land_grandfather |
| base_model: CompVis/stable-diffusion-v1-4 |
| pipeline_tag: text-to-image |
| library_name: diffusers |
| --- |
| |
| # DreamBooth model for the Land Grandfather concept |
|
|
| This is a Stable Diffusion model fine-tuned on the Lang Grandfather(lgd) concept with DreamBooth. |
| The dataset is from the game ** Black Myth WUKONG **. |
| |
| It can be used by modifying the `instance_prompt`: **a photo of lgd old man**, the trigger word is `lgd` |
| |
| |
| ## Usage |
| |
| ```python |
| from diffusers import StableDiffusionPipeline |
| |
| pipe = StableDiffusionPipeline.from_pretrained('BoHu370/lgd-old-man').to('cuda') |
| |
| name_of_your_concept = 'lgd' |
| type_of_thing = 'old man' |
| prompt = f"a photo of {name_of_your_concept} {type_of_thing} playing computer game" |
| guidance_scale = 5 |
| |
| image = pipe(prompt, guidance_scale=guidance_scale).images[0] |
| image |
| |
| ``` |
| |
| ## Examples |
| |
|  |
| |
|  |
| |
|  |
| |
| |
|  |
| |
| |