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
|
@@ -67,6 +67,11 @@ locate **gguf** from Add Node > extension dropdown menu (between 3d and api; sec
|
|
| 67 |
- select the safetensors model; click `Queue` (run); track the progress from console
|
| 68 |
- the converted gguf file will be saved to the output folder (./ComfyUI/output)
|
| 69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
### **disclaimer**
|
| 71 |
- some models (original files) as well as part of the codes are obtained from somewhere or provided by someone else and we might not easily spot out the creator/contributor(s) behind, unless it was specified in the source; rather let it blank instead of anonymous/unnamed/unknown
|
| 72 |
- we hope we are able to make more effort to trace the source; if it is your work, do let us know; we will address it back properly and probably; thanks for everything
|
|
|
|
| 67 |
- select the safetensors model; click `Queue` (run); track the progress from console
|
| 68 |
- the converted gguf file will be saved to the output folder (./ComfyUI/output)
|
| 69 |
|
| 70 |
+
### **convertor (reverse)**
|
| 71 |
+
- drag gguf file(s) to diffusion_models folder (./ComfyUI/models/diffusion_models)
|
| 72 |
+
- select the gguf model; click `Queue` (run); track the progress from console
|
| 73 |
+
- the reverse converted safetensors file will be saved to the output folder (./ComfyUI/output)
|
| 74 |
+
|
| 75 |
### **disclaimer**
|
| 76 |
- some models (original files) as well as part of the codes are obtained from somewhere or provided by someone else and we might not easily spot out the creator/contributor(s) behind, unless it was specified in the source; rather let it blank instead of anonymous/unnamed/unknown
|
| 77 |
- we hope we are able to make more effort to trace the source; if it is your work, do let us know; we will address it back properly and probably; thanks for everything
|