Sander Land
Update README.md
5f35af0
|
raw
history blame
1.53 kB
---
license: creativeml-openrail-m
tags:
- pytorch
- diffusers
- stable-diffusion
- text-to-image
- diffusion-models-class
- dreambooth-hackathon
- science
widget:
- text: an anatomical drawing of a bicycle in the style of sbtstyle
---
# DreamBooth model for for anatomical drawings
This is a Stable Diffusion model fine-tuned on the sbtstyle concept with DreamBooth. It can be used by modifying the `instance_prompt`: **an anatomical drawing in the style of sbtstyle**
This model was created as part of the DreamBooth Hackathon 🔥. Visit the [organisation page](https://huggingface.co/dreambooth-hackathon) for instructions on how to take part!
## Examples
<table>
<tr>
<td>One of the images used to fine-tune on<br>"an anatomical drawing in the style of sbtstyle"</td>
<td>One of the images generated by the model<br>" an anatomical drawing of a bicycle in the style of sbtstyle"</td>
<td>One of the images generated by the model<br>" an anatomical drawing of a horse in the style of sbtstyle"</td>
</tr>
<tr>
<td>
<img src="https://i.imgur.com/nALP2kQ.png" style="height:300px">
</td>
<td>
<img src="https://i.imgur.com/JGg2Zvs.png" style="height:300px">
</td>
<td>
<img src="https://i.imgur.com/cNpfXjI.png" style="height:300px">
</td>
</tr>
</table>
## Usage
```python
from diffusers import StableDiffusionPipeline
pipeline = StableDiffusionPipeline.from_pretrained('Sanderbaduk/science-sobotta-anatomical-drawings')
image = pipeline().images[0]
image
```