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
|
@@ -3,7 +3,6 @@ license: mit
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
tags:
|
| 6 |
-
- image-to-video
|
| 7 |
- comfyui
|
| 8 |
- gguf-node
|
| 9 |
widget:
|
|
@@ -24,7 +23,7 @@ widget:
|
|
| 24 |
- text: drag it <metadata inside>
|
| 25 |
output:
|
| 26 |
url: samples\ComfyUI_00003_.png
|
| 27 |
-
pipeline_tag:
|
| 28 |
---
|
| 29 |
|
| 30 |
# **gguf-node test pack**
|
|
|
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
tags:
|
|
|
|
| 6 |
- comfyui
|
| 7 |
- gguf-node
|
| 8 |
widget:
|
|
|
|
| 23 |
- text: drag it <metadata inside>
|
| 24 |
output:
|
| 25 |
url: samples\ComfyUI_00003_.png
|
| 26 |
+
pipeline_tag: image-to-video
|
| 27 |
---
|
| 28 |
|
| 29 |
# **gguf-node test pack**
|