Instructions to use calcuis/gguf-node with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use calcuis/gguf-node with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("calcuis/gguf-node", dtype=torch.bfloat16, device_map="cuda") prompt = "anime style anime girl with massive fennec ears and one big fluffy tail, she has blonde long hair blue eyes wearing a maid outfit with a long black gold leaf pattern dress, walking slowly to the front with sweetie smile, holding a fancy black forest cake with candles on top in the kitchen of an old dark Victorian mansion lit by candlelight with a bright window to the foggy forest" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -62,7 +62,7 @@ locate **gguf** from Add Node > extension dropdown menu (between 3d and api; sec
|
|
| 62 |
|
| 63 |
#### **cutter (beta)**
|
| 64 |
- drag safetensors file(s) to diffusion_models folder (./ComfyUI/models/diffusion_models)
|
| 65 |
-
- select the safetensors model; click `Queue` (run); track the progress from console
|
| 66 |
- when it was done; the half-cut safetensors fp8_e4m3fn will be saved to the output folder (./ComfyUI/output)
|
| 67 |
|
| 68 |
### **convertor (alpha)**
|
|
@@ -71,8 +71,8 @@ locate **gguf** from Add Node > extension dropdown menu (between 3d and api; sec
|
|
| 71 |
- the converted gguf file will be saved to the output folder (./ComfyUI/output)
|
| 72 |
|
| 73 |
### **reference**
|
| 74 |
-
- flux from [black-forest-labs](https://huggingface.co/black-forest-labs)
|
| 75 |
- sd3.5, sdxl from [stabilityai](https://huggingface.co/stabilityai)
|
|
|
|
| 76 |
- aura from [fal](https://huggingface.co/fal)
|
| 77 |
- mochi from [genmo](https://huggingface.co/genmo)
|
| 78 |
- hyvid from [tencent](https://huggingface.co/tencent)
|
|
|
|
| 62 |
|
| 63 |
#### **cutter (beta)**
|
| 64 |
- drag safetensors file(s) to diffusion_models folder (./ComfyUI/models/diffusion_models)
|
| 65 |
+
- select the safetensors model; click `Queue` (run); simply track the progress from console
|
| 66 |
- when it was done; the half-cut safetensors fp8_e4m3fn will be saved to the output folder (./ComfyUI/output)
|
| 67 |
|
| 68 |
### **convertor (alpha)**
|
|
|
|
| 71 |
- the converted gguf file will be saved to the output folder (./ComfyUI/output)
|
| 72 |
|
| 73 |
### **reference**
|
|
|
|
| 74 |
- sd3.5, sdxl from [stabilityai](https://huggingface.co/stabilityai)
|
| 75 |
+
- flux from [black-forest-labs](https://huggingface.co/black-forest-labs)
|
| 76 |
- aura from [fal](https://huggingface.co/fal)
|
| 77 |
- mochi from [genmo](https://huggingface.co/genmo)
|
| 78 |
- hyvid from [tencent](https://huggingface.co/tencent)
|