Instructions to use mitchtech/vulcan-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mitchtech/vulcan-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("mitchtech/vulcan-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
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: creativeml-openrail-m
|
| 3 |
+
thumbnail: "https://huggingface.co/mitchtech/vulcan-diffusion/resolve/main/vulcan-grid1.jpg"
|
| 4 |
+
tags:
|
| 5 |
+
- stable-diffusion
|
| 6 |
+
- text-to-image
|
| 7 |
---
|
| 8 |
+
|
| 9 |
+
### Vulcan Diffusion
|
| 10 |
+
|
| 11 |
+
This is a fine-tuned Stable Diffusion model trained on screenshots of the Vulcan alien species from the Star Trek franchise. Use the token **_vulcan_** in your prompts to generate the effect.
|
| 12 |
+
|
| 13 |
+
[CKPT download link](https://huggingface.co/resolve/main/vulcan-diffusion-v1.ckpt)
|
| 14 |
+
|
| 15 |
+
|
| 16 |
+
### **vulcans generated using this model**
|
| 17 |
+
|
| 18 |
+

|
| 19 |
+
|
| 20 |
+

|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
This model was trained using the diffusers based Dreambooth training by ShivamShrirao.
|
| 24 |
+
|
| 25 |
+
--
|
| 26 |
+
### 🧨 Diffusers
|
| 27 |
+
|
| 28 |
+
This model can be used just like any other Stable Diffusion model. For more information,
|
| 29 |
+
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
| 30 |
+
|
| 31 |
+
You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
## License
|
| 35 |
+
|
| 36 |
+
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
|
| 37 |
+
The CreativeML OpenRAIL License specifies:
|
| 38 |
+
|
| 39 |
+
1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
|
| 40 |
+
2. 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
|
| 41 |
+
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)
|
| 42 |
+
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
|