AstraliteHeart commited on
Commit
51ae96e
·
1 Parent(s): 7a03aad

Push basic workflow

Browse files
Files changed (4) hide show
  1. README.md +12 -1
  2. comfy_nodes/README.md +26 -0
  3. lora/README.md +24 -0
  4. workflows/README.md +28 -0
README.md CHANGED
@@ -27,6 +27,15 @@ Please join [our Discord Server](https://discord.gg/pYsdjMfu3q) if you have ques
27
 
28
  Please check [this article](https://civitai.com/articles/19986) to learn more about why it took so long for us to ship V7 and upcoming model releases.
29
 
 
 
 
 
 
 
 
 
 
30
  ## Model prompting
31
 
32
  This model supports a wide array of styles and aesthetics but provides an opinionated default prompt template:
@@ -102,7 +111,9 @@ All images have been used in training with both captions and tags. Artists' name
102
 
103
  ## LoRA training
104
 
105
- We recommend using SimpleTuner for LoRA training following [this guide](https://github.com/bghira/SimpleTuner/blob/main/documentation/quickstart/AURAFLOW.md).
 
 
106
 
107
 
108
  ## Commercial API
 
27
 
28
  Please check [this article](https://civitai.com/articles/19986) to learn more about why it took so long for us to ship V7 and upcoming model releases.
29
 
30
+ ## Important HuggingFace links
31
+
32
+ - **[GGUF Models](gguf/)** - Quantized models for lower VRAM usage (Q8_0 recommended for best quality/size balance)
33
+ - **[Safetensor Model](safetensor/)** - Single-file safetensors format for easier loading
34
+ - **[LoRA Training](lora/)** - Information and tools for training LoRAs with SimpleTuner
35
+ - **[Workflows](workflows/)** - ComfyUI workflow examples for standard and GGUF inference
36
+ - **[ComfyUI Nodes](comfy_nodes/)** - Custom PonyNoise node for GPU/CPU noise selection
37
+
38
+
39
  ## Model prompting
40
 
41
  This model supports a wide array of styles and aesthetics but provides an opinionated default prompt template:
 
111
 
112
  ## LoRA training
113
 
114
+ We recommend using SimpleTuner for LoRA training following [this guide](https://github.com/bghira/SimpleTuner/blob/main/documentation/quickstart/AURAFLOW.md).
115
+
116
+ For information on converting SimpleTuner LoRAs to diffusers/ComfyUI compatible format, see the [LoRA folder](lora/). A [LoRA workflow example](workflows/pony-v7-lora.png) is also available.
117
 
118
 
119
  ## Commercial API
comfy_nodes/README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ComfyUI PonyNoise Node
2
+
3
+ ## Download
4
+
5
+ 📦 [ComfyUI_PonyNoise.zip](ComfyUI_PonyNoise.zip)
6
+
7
+ ## Overview
8
+
9
+ ComfyUI uses CPU noise by default to ensure consistency across different platforms, while `diffusers` use GPU noise by default. However, GPU noise generation may vary between different GPU models, although it typically remains consistent across the latest NVIDIA cards.
10
+
11
+ This custom node provides the flexibility to switch between GPU and CPU noise generation modes, enabling you to match `diffusers` output on the same machine when needed.
12
+
13
+ ## Usage
14
+
15
+ To get started with the PonyNoise node, please refer to the [noise selection workflow](../workflows/pony-v7-noise-selection.png) which demonstrates proper configuration and integration with your generation pipeline.
16
+
17
+ ## Installation
18
+
19
+ 1. Download the [ComfyUI_PonyNoise.zip](ComfyUI_PonyNoise.zip) file
20
+ 2. Extract the contents to your ComfyUI custom nodes directory
21
+ 3. Restart ComfyUI
22
+ 4. Load the workflow
23
+
24
+ ## Acknowledgments
25
+
26
+ Special thanks to [Silver](https://github.com/silveroxides) for adapting the [ComfyUI Noise nodes](https://github.com/BlenderNeko/ComfyUI_Noise) and helping with workflows.
lora/README.md CHANGED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pony V7 LoRA Training
2
+
3
+ ## Training Guide
4
+
5
+ We recommend using SimpleTuner for LoRA training following [this guide](https://github.com/bghira/SimpleTuner/blob/main/documentation/quickstart/AURAFLOW.md).
6
+
7
+ ## ComfyUI LoRA Workflow
8
+
9
+ A [LoRA workflow example](../workflows/pony-v7-lora.png) is available showing how to load and use LoRAs with Pony V7. Simply drag and drop the workflow image into your ComfyUI canvas to load it.
10
+
11
+ ## LoRA Conversion Script
12
+
13
+ ### [convert_simpletuner_lora.py](convert_simpletuner_lora.py)
14
+
15
+ A utility script to convert SimpleTuner LoRA weights to diffusers-compatible format for AuraFlow models.
16
+
17
+ **Usage:**
18
+ ```bash
19
+ python convert_simpletuner_lora.py <input_lora.safetensors> <output_lora.safetensors>
20
+ ```
21
+
22
+
23
+ This script ensures your LoRAs trained with SimpleTuner can be loaded directly with diffusers' `load_lora_weights()` method or inside of ComfyUI's LoRA nodes.
24
+
workflows/README.md CHANGED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pony V7 ComfyUI Workflows
2
+
3
+ ## How to Use
4
+
5
+ Simply drag and drop any of the workflow images below directly into your ComfyUI canvas to load them. ComfyUI will automatically parse the embedded workflow data from the image.
6
+
7
+ ## Available Workflows
8
+
9
+ ### [Basic Workflow](pony-v7-simple.png)
10
+ ![Basic Workflow](pony-v7-simple.png)
11
+
12
+ A simple, straightforward workflow for generating images with Pony V7 using the SafeTensor. Perfect for getting started quickly.
13
+
14
+ ### [GGUF Workflow](pony-v7-simple-gguf.png)
15
+ ![GGUF Workflow](pony-v7-simple-gguf.png)
16
+
17
+ Workflow optimized for using GGUF quantized models. Requires the [GGUF nodes by City96](https://github.com/city96/ComfyUI-GGUF). GGUF formats allow lower VRAM use with minimal degradation to quality and no noticeable impact to performance. Q8_0 version is recommended. See the [GGUF README](../gguf/) for more details.
18
+
19
+ ### [LoRA Workflow](pony-v7-lora.png)
20
+ ![LoRA Workflow](pony-v7-lora.png)
21
+
22
+ Workflow demonstrating how to use LoRA models with Pony V7. Shows proper setup for loading and applying LoRA weights to enhance or modify generation results. See the [LoRA README](../lora/) for training and conversion information.
23
+
24
+ ### [Noise Selection Workflow](pony-v7-noise-selection.png)
25
+ ![Noise Selection Workflow](pony-v7-noise-selection.png)
26
+
27
+ Advanced workflow featuring the custom PonyNoise node that allows switching between GPU and CPU noise generation. Use this to match `diffusers` output or ensure cross-platform consistency. Requires the [PonyNoise node](../comfy_nodes/).
28
+