|
--- |
|
language: |
|
- en |
|
license: creativeml-openrail-m |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
--- |
|
# Dreambooth model trained by jorgecif with [TheLastBen's fast-DreamBooth](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast-DreamBooth.ipynb) notebook |
|
|
|
Test the model via A1111 Colab [fast-Colab-A1111](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast_stable_diffusion_AUTOMATIC1111.ipynb) |
|
|
|
### Sample pictures of this concept: |
|
|
|
|
|
<img src="https://huggingface.co/jorgecif/evoke-eva1/resolve/main/evapreview1.jpg" style="max-width: 200px;" width="100%"/> |
|
- eva taking notes in ipad classroom graphic novel |
|
<img src="https://huggingface.co/jorgecif/evoke-eva1/resolve/main/evapreview2.jpg" style="max-width: 200px;" width="100%"/> |
|
- eva as a hobbit in pixel art |
|
|
|
|
|
<img src="https://huggingface.co/jorgecif/evoke-eva1/resolve/main/evapreview3.jpg" style="max-width: 200px;" width="100%"/> |
|
- eva running at the city building traffic graphic novel |
|
|
|
<img src="https://huggingface.co/jorgecif/evoke-eva1/resolve/main/evapreview4.jpg" style="max-width: 200px;" width="100%"/> |
|
- eva in a riot about the global warming at the parlament graphic novel |
|
|
|
<img src="https://huggingface.co/jorgecif/evoke-eva1/resolve/main/evapreview5.jpg" style="max-width: 200px;" width="100%"/> |
|
- eva at the future in a big sustainable city graphic novel |
|
|
|
|
|
|
|
|
|
|
|
### CKPT |
|
|
|
[Download jorgeo.ckpt (2.13GB)](https://huggingface.co/jorgecif/quidlab-jorge/blob/main/jorgeo.ckpt) |
|
|
|
|
|
### 🧨 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](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion). |
|
|
|
```python |
|
from diffusers import StableDiffusionPipeline |
|
import torch |
|
|
|
model_id = "dreamlike-art/dreamlike-photoreal-2.0" |
|
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16) |
|
pipe = pipe.to("cuda") |
|
|
|
prompt = "photo, a church in the middle of a field of crops, bright cinematic lighting, gopro, fisheye lens" |
|
image = pipe(prompt).images[0] |
|
|
|
image.save("./result.jpg") |
|
``` |
|
|
|
|
|
# License |
|
|
|
This model is licesed under a **modified** CreativeML OpenRAIL-M license. |
|
|
|
- **You are not allowed to host, finetune, or do inference with the model or its derivatives on websites/apps/etc. If you want to, please email us at [email protected]** |
|
- **You are free to host the model card and files (Without any actual inference or finetuning) on both commercial and non-commercial websites/apps/etc. Please state the full model name (Dreamlike Photoreal 2.0) and include the license as well as a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0)** |
|
- **You are free to use the outputs (images) of the model for commercial purposes in teams of 10 or less** |
|
- You can't use the model to deliberately produce nor share illegal or harmful outputs or content |
|
- The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license |
|
- You may re-distribute the weights. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the **modified** CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here: https://huggingface.co/dreamlike-art/dreamlike-photoreal-2.0/blob/main/LICENSE.md |
|
|
|
|