Text-to-Image
Diffusers
English
StableDiffusionPipeline
stable-diffusion
stable-diffusion-diffusers
Avatar
Avatar The Way of Water
film
James Cameron
Instructions to use riccardogiorato/avatar-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use riccardogiorato/avatar-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("riccardogiorato/avatar-diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
Riccardo Giorato commited on
Commit ·
7bbf784
1
Parent(s): a1b8790
update README
Browse files- README.md +41 -0
- assets/avatartwow.png +0 -0
README.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- stable-diffusion
|
| 6 |
+
- stable-diffusion-diffusers
|
| 7 |
+
- Avatar
|
| 8 |
+
- Avatar The Way of Water
|
| 9 |
+
- film
|
| 10 |
+
- James Cameron
|
| 11 |
license: creativeml-openrail-m
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
<center><img src="https://huggingface.co/riccardogiorato/avatar-diffusion/resolve/main/assets/avatartwow.png" width="512" height="512"/></center>
|
| 15 |
+
|
| 16 |
+

|
| 17 |
+
|
| 18 |
+
# Beeple Diffusion
|
| 19 |
+
|
| 20 |
+
An AI model that generates artwork with Avatar style!
|
| 21 |
+
|
| 22 |
+
Based of a finetuned Stable Diffusion V1.5, trained in Dreambooth with more than 50 images from the latest trailer Avatar: The Way of Water.
|
| 23 |
+
|
| 24 |
+
By [riccardogiorato](https://twitter.com/riccardogiorato)
|
| 25 |
+
|
| 26 |
+
> **Note**: To get the Avatar styles, use the **avatartwow** keyword in your prompt. Don't use the **avatar** keyword, because it's already used by the original model but full of messy data.
|
| 27 |
+
|
| 28 |
+
# **👇Model👇**
|
| 29 |
+
|
| 30 |
+
AI Model Weights available at huggingface: https://huggingface.co/riccardogiorato/avatar-diffusion
|
| 31 |
+
|
| 32 |
+
# Usage
|
| 33 |
+
|
| 34 |
+
After model loaded, use keyword **avatartwow** in your prompt.
|
| 35 |
+
|
| 36 |
+
## License
|
| 37 |
+
|
| 38 |
+
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
|
| 39 |
+
The CreativeML OpenRAIL License specifies:
|
| 40 |
+
|
| 41 |
+
1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
|
| 42 |
+
2. The authors claim 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
|
| 43 |
+
3. You may re-distribute the weights and use the model commercially and/or as a service. 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 CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)
|
| 44 |
+
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
|
assets/avatartwow.png
ADDED
|
|