Instructions to use Winnougan/Ideogram_Instant_NSFW with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Winnougan/Ideogram_Instant_NSFW with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Winnougan/Ideogram_Instant_NSFW", torch_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
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("Winnougan/Ideogram_Instant_NSFW", torch_dtype=torch.bfloat16, device_map="cuda")
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]Ideogram 4 Instant β NSFW
"10 steps. Fine-tuned for NSFW Adult Style".
Ideogram 4 Instant NSFW is a fine-tuned text-to-image checkpoint built on top of
ideogram-ai/ideogram-4-fp8 (via the
fal/ideogram-v4-fast instant/fast release).
[Describe what this finetune changes β e.g. the dataset it was trained on, the style/domain it targets,
what makes it different from the base Instant checkpoint.]
Key features
- β‘ [Number]-step inference β [describe schedule, e.g. optimized for the Instant/Fast pipeline].
- π― [Describe any CFG/architecture behavior inherited from base model or changed by finetune]
- π§ [Describe finetuning method] β e.g. LoRA, full finetune, QLoRA, dataset size, training steps.
- π§© Standard Diffusers components β no repository Python code and no
trust_remote_code(update this if your finetune requires custom code). - π¦ [Describe release scope] β e.g. transformer-only, LoRA weights only, full pipeline.
Usage
This model expects Ideogram 4's structured JSON caption format. Local Diffusers inference does not auto-expand natural-language prompts β provide a complete structured caption, for example:
import json
import torch
from diffusers import Ideogram4Pipeline, Ideogram4Transformer2DModel
repo_id = "your-username/ideogram-4-instant-finetune"
components_repo_id = "ideogram-ai/ideogram-4-nf4-diffusers" # or your preferred shared components repo
transformer = Ideogram4Transformer2DModel.from_pretrained(
repo_id,
subfolder="transformer",
torch_dtype=torch.bfloat16,
)
pipe = Ideogram4Pipeline.from_pretrained(
components_repo_id,
transformer=transformer,
torch_dtype=torch.bfloat16,
)
pipe.to("cuda")
prompt = json.dumps(
{
"high_level_description": "Describe your image here.",
"compositional_deconstruction": {
"background": "Describe the background.",
"elements": [
{"type": "text", "text": "YOUR TEXT", "desc": "Description of the element."}
],
},
},
ensure_ascii=False,
separators=(",", ":"),
)
generator = torch.Generator(device="cuda").manual_seed(42)
image = pipe(
prompt,
height=1024,
width=1024,
num_inference_steps=20,
guidance_scale=1.0,
generator=generator,
).images[0]
image.save("output.png")
Note: Update this snippet to match your finetune's actual inference requirements (precision, number of steps, guidance settings, any custom pipeline code, LoRA loading, etc.).
Training details
- Base model:
ideogram-ai/ideogram-4-fp8/fal/ideogram-v4-fast - Method: [LoRA / DreamBooth / full finetune / QAD / etc.]
- Dataset: [describe dataset, size, licensing of training data]
- Steps / epochs: [fill in]
- Hardware: [fill in]
- Hyperparameters: [learning rate, batch size, rank if LoRA, etc.]
Repository layout
.
βββ README.md
βββ LICENSE.md
βββ NOTICE
βββ transformer/ (or lora/ depending on release type)
βββ config.json
βββ diffusion_pytorch_model.safetensors
Weights and provenance
This model is a fine-tune derived from Ideogram 4 (via ideogram-ai/ideogram-4-fp8 and/or
fal/ideogram-v4-fast). [Describe any conversion, quantization, or format changes made during
training/export.]
Ideogram 4 was created by Ideogram AI. The Instant/Fast base checkpoint was developed and released by fal. This derivative fine-tune was developed and released by [Your Name/Org] and is not an official Ideogram or fal product, and is not endorsed by Ideogram AI or fal.
License
As a derivative of Ideogram 4, this model inherits the Ideogram 4 Non-Commercial Model
Agreement. The complete inherited license is included in LICENSE.md
and governs use and redistribution of this model. By downloading or using these weights, you
acknowledge and agree to the terms of that license, including its non-commercial use
restriction.
- Downloads last month
- 4
Model tree for Winnougan/Ideogram_Instant_NSFW
Base model
ideogram-ai/ideogram-4-fp8