takarajordan
commited on
Commit
•
2a71ae0
1
Parent(s):
8a03525
Update README.md
Browse files
README.md
CHANGED
@@ -1,58 +1,44 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
- Faster inference times
|
46 |
-
- Ability to run on less powerful hardware without significant quality loss
|
47 |
-
|
48 |
-
## License
|
49 |
-
|
50 |
-
This model is released under the Apache 2.0 license. Please see the LICENSE file for more details.
|
51 |
-
|
52 |
-
## Acknowledgements
|
53 |
-
|
54 |
-
- Thanks to the creators of stable-diffusion.cpp for providing an efficient C++ implementation of Stable Diffusion.
|
55 |
-
- Credit to the Hugging Face community for hosting the dataset and fostering open-source AI development.
|
56 |
-
|
57 |
-
For any questions or issues, please open an issue in this repository.
|
58 |
-
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
base_model:
|
4 |
+
- black-forest-labs/FLUX.1-schnell
|
5 |
+
pipeline_tag: text-to-image
|
6 |
+
---
|
7 |
+
# Flux.1 Q_4_k
|
8 |
+
|
9 |
+
This repository contains a quantized GGUF model optimized for [stable-diffusion.cpp](https://github.com/leejet/stable-diffusion.cpp), enabling efficient image generation on lower-end hardware. It was used to create the [Kurai Toori Dark Streets dataset](https://huggingface.co/datasets/takara-ai/kurai_toori_dark_streets).
|
10 |
+
|
11 |
+
## Features
|
12 |
+
|
13 |
+
- Optimized for lower-end hardware
|
14 |
+
- High-quality image generation
|
15 |
+
- Efficient performance through quantization
|
16 |
+
- Wide-ranging capabilities beyond dark street scenes
|
17 |
+
|
18 |
+
## Usage
|
19 |
+
|
20 |
+
1. Clone and set up stable-diffusion.cpp:
|
21 |
+
```
|
22 |
+
git clone https://github.com/leejet/stable-diffusion.cpp.git
|
23 |
+
cd stable-diffusion.cpp
|
24 |
+
# Follow setup instructions in the stable-diffusion.cpp README
|
25 |
+
```
|
26 |
+
2. Download the GGUF model file from this repository.
|
27 |
+
3. Run the model using stable-diffusion.cpp, pointing to the downloaded file.
|
28 |
+
|
29 |
+
## Performance Benefits
|
30 |
+
|
31 |
+
- Reduced memory usage
|
32 |
+
- Faster inference times
|
33 |
+
- Runs on less powerful hardware without significant quality loss
|
34 |
+
|
35 |
+
## License
|
36 |
+
|
37 |
+
Apache 2.0 (see LICENSE file for details)
|
38 |
+
|
39 |
+
## Acknowledgements
|
40 |
+
|
41 |
+
- [stable-diffusion.cpp](https://github.com/leejet/stable-diffusion.cpp) creators
|
42 |
+
- [Hugging Face](https://huggingface.co/) community
|
43 |
+
|
44 |
+
For questions or issues, please open an issue in this repository.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|