|
|
|
|
|
--- |
|
|
tags: |
|
|
- stable-diffusion |
|
|
- text-to-image |
|
|
- danimls |
|
|
license: creativeml-openrail-m |
|
|
pipeline_tag: text-to-image |
|
|
inference: false |
|
|
--- |
|
|
|
|
|
# DANIMLS-V1: Stylized Cyberpunk Animal Generator |
|
|
|
|
|
**Creator**: [@Bootz_of_Truth](https://x.com/Bootz_of_Truth) |
|
|
**Hosted via**: [Modelz / Alpaca Network](https://modelz.io/CryptoBootz/Danimls-V1) |
|
|
|
|
|
--- |
|
|
|
|
|
## 🔧 Model Description |
|
|
|
|
|
DANIMLS-V1 is a stylized **text-to-image Stable Diffusion pipeline** trained on custom anthropomorphic animal art in a **cyberpunk Tokyo aesthetic**, using multiple LoRA adapters for species, background, and outfit styles. |
|
|
|
|
|
- **Base Model**: `runwayml/stable-diffusion-v1-5` |
|
|
- **LoRA Format**: `.safetensors` |
|
|
- **Framework**: `diffusers`, `transformers`, `torch`, `xformers` |
|
|
- **Precision**: `float32` for CPU testing, `float16` for GPU deployment |
|
|
- **Safety Checker**: Disabled (filtered via LoRA style constraints) |
|
|
|
|
|
--- |
|
|
|
|
|
## 🧩 LoRAs Included |
|
|
|
|
|
- Animals: |
|
|
- `daniml_V2_alpaca.safetensors` |
|
|
- `daniml_V2_badger.safetensors` |
|
|
- `daniml_V2_fox.safetensors` |
|
|
- `daniml_V2_pig.safetensors` |
|
|
- `daniml_V2_rat.safetensors` |
|
|
- `daniml_V2_monkey.safetensors` |
|
|
- Background: |
|
|
- `daniml_background.safetensors` |
|
|
- Styles: |
|
|
- `daniml_V2_wizard.safetensors` |
|
|
- `daniml_V2_gangsterV2.safetensors` |
|
|
- `daniml_V2_samurai.safetensors` |
|
|
- `daniml_V2_cryptonerdV2.safetensors` |
|
|
- `daniml_V2_lowpoly.safetensors` |
|
|
- `daniml_V2_hazmat.safetensors` |
|
|
- `daniml_V2_mech.safetensors` |
|
|
- `daniml_V2_business.safetensors` |
|
|
|
|
|
--- |
|
|
|
|
|
## 🧪 Example Inference (Python) |
|
|
|
|
|
```python |
|
|
from diffusers import StableDiffusionPipeline |
|
|
import torch |
|
|
|
|
|
pipe = StableDiffusionPipeline.from_pretrained( |
|
|
"./danimls_model", |
|
|
torch_dtype=torch.float32, # use float16 for GPU |
|
|
safety_checker=None, |
|
|
).to("cpu") # or "cuda" if available |
|
|
|
|
|
prompt = "stylized anthropomorphic monkey, wizard robe, floating orbs, cyberpunk Tokyo rooftop" |
|
|
image = pipe(prompt).images[0] |
|
|
image.save("wizard_monkey.png") |
|
|
``` |
|
|
|
|
|
--- |
|
|
|
|
|
## ⚖️ License & Intended Use |
|
|
|
|
|
- **License**: CreativeML Open RAIL-M |
|
|
- **Intended Use**: Creative projects, AI art, NFT generation, cyberpunk aesthetics |
|
|
- **Not for**: Realism, photo restoration, NSFW content |
|
|
|
|
|
--- |
|
|
|
|
|
## 🌐 Credits & Hosting |
|
|
|
|
|
DANIMLS-V1 is deployed through the **Modelz** platform and will be served onchain by **Alpaca Network** once Singularity is reached. |
|
|
|
|
|
> For more details and to access the Telegram bot, visit: [modelz.io/CryptoBootz/Danimls-V1](https://modelz.io/CryptoBootz/Danimls-V1) |
|
|
|