Instructions to use deepconradlabs/conrad_nit_image_generator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use deepconradlabs/conrad_nit_image_generator with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("deepconradlabs/conrad_nit_image_generator", 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
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,34 +1,64 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
license: apache-2.0
|
| 4 |
pipeline_tag: text-to-image
|
| 5 |
library_name: diffusers
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
# Conrad NIT Image Generator
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
| 11 |
|
| 12 |
## Features
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
| 27 |
|
| 28 |
-
|
|
|
|
|
|
|
| 29 |
|
| 30 |
-
|
|
|
|
| 31 |
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
-
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
pipeline_tag: text-to-image
|
| 4 |
library_name: diffusers
|
| 5 |
+
tags:
|
| 6 |
+
- text-to-image
|
| 7 |
+
- stable-diffusion
|
| 8 |
+
- diffusion
|
| 9 |
+
- image-generation
|
| 10 |
+
---
|
| 11 |
|
| 12 |
# Conrad NIT Image Generator
|
| 13 |
|
| 14 |
+
**Model Card** • `deep-conrad/conrad_nit_image_generator`
|
| 15 |
+
|
| 16 |
+
Conrad NIT Image Generator is an advanced text-to-image model that transforms natural language prompts into high-quality visual content.
|
| 17 |
|
| 18 |
## Features
|
| 19 |
|
| 20 |
+
- Photorealistic image generation
|
| 21 |
+
- Artistic and creative style support
|
| 22 |
+
- Strong natural language prompt understanding
|
| 23 |
+
- Fast inference
|
| 24 |
+
- Versatile outputs for marketing, concepts, and design
|
| 25 |
+
|
| 26 |
+
## Example
|
| 27 |
+
|
| 28 |
+
**Prompt:**
|
| 29 |
+
A futuristic city in Nairobi at sunset, ultra realistic, cinematic lighting, highly detailed.
|
| 30 |
+
text**Negative Prompt (recommended):**
|
| 31 |
+
blurry, low quality, deformed, ugly, bad anatomy
|
| 32 |
+
text## Intended Use
|
| 33 |
+
|
| 34 |
+
This model is intended for:
|
| 35 |
+
- Research and experimentation
|
| 36 |
+
- Creative content generation
|
| 37 |
+
- Educational purposes
|
| 38 |
+
- Marketing visuals and concept art
|
| 39 |
+
- Personal and professional design workflows
|
| 40 |
+
|
| 41 |
+
## Limitations
|
| 42 |
|
| 43 |
+
- Output quality heavily depends on prompt engineering
|
| 44 |
+
- May generate artifacts or fail on very complex/ambiguous prompts
|
| 45 |
+
- Not suitable for high-stakes or production use without human supervision
|
| 46 |
|
| 47 |
+
## How to Use
|
| 48 |
|
| 49 |
+
```python
|
| 50 |
+
from diffusers import DiffusionPipeline
|
| 51 |
+
import torch
|
| 52 |
|
| 53 |
+
pipe = DiffusionPipeline.from_pretrained("deep-conrad/conrad_nit_image_generator")
|
| 54 |
+
pipe = pipe.to("cuda" if torch.cuda.is_available() else "cpu")
|
| 55 |
|
| 56 |
+
image = pipe(
|
| 57 |
+
"A futuristic city in Nairobi at sunset, ultra realistic, cinematic lighting, highly detailed.",
|
| 58 |
+
num_inference_steps=30,
|
| 59 |
+
guidance_scale=7.5
|
| 60 |
+
).images[0]
|
| 61 |
|
| 62 |
+
image.save("generated_image.png")
|
| 63 |
+
License
|
| 64 |
+
Apache License 2.0
|