Spaces:
Runtime error
Runtime error
Fix Gradio version specification
Browse files
README.md
CHANGED
|
@@ -1,78 +1,45 @@
|
|
| 1 |
---
|
| 2 |
title: HarukiMix AI Image Generator
|
| 3 |
emoji: 🎨
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version:
|
| 8 |
-
python_version: "3.11"
|
| 9 |
app_file: app.py
|
| 10 |
-
|
| 11 |
---
|
| 12 |
|
| 13 |
-
#
|
| 14 |
|
| 15 |
-
|
| 16 |
|
| 17 |
## Features
|
| 18 |
|
| 19 |
-
-
|
| 20 |
-
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
- Guidance scale control (1.0-20.0)
|
| 24 |
-
- Custom image dimensions (512-1024px)
|
| 25 |
-
- Seed control for reproducibility
|
| 26 |
-
- **Example Prompts**: Pre-loaded with 4 example prompts to get you started
|
| 27 |
-
- **Fast Generation**: Optimized for quick image generation
|
| 28 |
-
|
| 29 |
-
## Model Information
|
| 30 |
-
|
| 31 |
-
- **Model**: harukimix (John6666/haruki-mix-v21-sdxl)
|
| 32 |
-
- **Base**: Stable Diffusion XL
|
| 33 |
-
- **Specialization**: Japanese girl character generation
|
| 34 |
-
- **License**: OpenRAIL
|
| 35 |
|
| 36 |
## Usage
|
| 37 |
|
| 38 |
-
1. Enter
|
| 39 |
-
2.
|
| 40 |
-
3. Adjust parameters
|
| 41 |
-
|
| 42 |
-
- **Guidance Scale**: How strictly to follow the prompt (default: 7.5)
|
| 43 |
-
- **Height/Width**: Image dimensions (default: 768x768)
|
| 44 |
-
- **Seed**: For reproducible results (-1 for random)
|
| 45 |
-
4. Click "🎨 Generate Image"
|
| 46 |
-
5. Wait for generation to complete
|
| 47 |
-
|
| 48 |
-
## Generation Time
|
| 49 |
-
|
| 50 |
-
- **First run**: 30-60 seconds (model loading)
|
| 51 |
-
- **Subsequent runs**: 15-30 seconds (CPU) to 5-10 seconds (GPU)
|
| 52 |
-
|
| 53 |
-
## Example Prompts
|
| 54 |
-
|
| 55 |
-
Try these prompts to get started:
|
| 56 |
-
|
| 57 |
-
- "beautiful japanese girl, long black hair, school uniform, smile, detailed face, masterpiece, best quality, 8k"
|
| 58 |
-
- "cute japanese girl, pink hair, kawaii style, big eyes, happy expression, detailed, high quality"
|
| 59 |
-
- "japanese woman, elegant kimono, traditional style, beautiful face, detailed, masterpiece"
|
| 60 |
-
- "young japanese girl, casual clothes, natural lighting, smile, realistic, detailed, high quality"
|
| 61 |
|
| 62 |
-
##
|
| 63 |
|
| 64 |
-
|
| 65 |
-
- Uses PyTorch and Diffusers library
|
| 66 |
-
- Supports both CPU and GPU inference
|
| 67 |
-
- Automatic device detection (CUDA/CPU)
|
| 68 |
|
| 69 |
-
##
|
| 70 |
|
| 71 |
-
-
|
| 72 |
-
-
|
| 73 |
-
-
|
| 74 |
-
-
|
|
|
|
|
|
|
| 75 |
|
| 76 |
## License
|
| 77 |
|
| 78 |
-
This
|
|
|
|
| 1 |
---
|
| 2 |
title: HarukiMix AI Image Generator
|
| 3 |
emoji: 🎨
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: purple
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 4.20.0
|
|
|
|
| 8 |
app_file: app.py
|
| 9 |
+
python_version: 3.11
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# HarukiMix AI Image Generator
|
| 13 |
|
| 14 |
+
Beautiful Japanese girl image generator using the HarukiMix model.
|
| 15 |
|
| 16 |
## Features
|
| 17 |
|
| 18 |
+
- Generate high-quality images of Japanese girls
|
| 19 |
+
- Customizable prompts and negative prompts
|
| 20 |
+
- Adjustable generation parameters
|
| 21 |
+
- Multiple sample prompts for inspiration
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
## Usage
|
| 24 |
|
| 25 |
+
1. Enter your prompt describing the image you want to generate
|
| 26 |
+
2. Optionally enter a negative prompt to exclude certain features
|
| 27 |
+
3. Adjust the generation parameters (steps, guidance scale, etc.)
|
| 28 |
+
4. Click "Generate Image" to create your image
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
+
## Model
|
| 31 |
|
| 32 |
+
This application uses the HarukiMix model, which is specifically trained to generate beautiful images of Japanese girls with high quality and detail.
|
|
|
|
|
|
|
|
|
|
| 33 |
|
| 34 |
+
## Parameters
|
| 35 |
|
| 36 |
+
- **Prompt**: Description of the image to generate
|
| 37 |
+
- **Negative Prompt**: Features to exclude from the image
|
| 38 |
+
- **Steps**: Number of inference steps (higher = better quality but slower)
|
| 39 |
+
- **Guidance Scale**: How much the model follows the prompt
|
| 40 |
+
- **Height/Width**: Image dimensions
|
| 41 |
+
- **Seed**: Random seed for reproducibility
|
| 42 |
|
| 43 |
## License
|
| 44 |
|
| 45 |
+
This project uses the HarukiMix model which is licensed under the OpenRAIL license.
|