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
Upload samples\ComfyUI_00012_.webp with huggingface_hub
Browse files- .gitattributes +1 -0
- samples//ComfyUI_00012_.webp +3 -0
.gitattributes
CHANGED
|
@@ -55,3 +55,4 @@ pixart-sigma-xl-2-1024-ms-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 55 |
pixart-sigma-xl-2-1024-ms-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
cosmos-7b-text2world-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
mochi-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 55 |
pixart-sigma-xl-2-1024-ms-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
cosmos-7b-text2world-q4_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
mochi-q3_k_m.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
samples/ComfyUI_00012_.webp filter=lfs diff=lfs merge=lfs -text
|
samples//ComfyUI_00012_.webp
ADDED
|