Instructions to use AEmotionStudio/ComfyUI-Model-Backups with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use AEmotionStudio/ComfyUI-Model-Backups with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("AEmotionStudio/ComfyUI-Model-Backups", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - llama-cpp-python
How to use AEmotionStudio/ComfyUI-Model-Backups with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="AEmotionStudio/ComfyUI-Model-Backups", filename="clip/Qwen2.5-VL-7B-Instruct-abliterated.Q8_0.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use AEmotionStudio/ComfyUI-Model-Backups with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S # Run inference directly in the terminal: llama cli -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S # Run inference directly in the terminal: llama cli -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S # Run inference directly in the terminal: ./llama-cli -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Use Docker
docker model run hf.co/AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
- LM Studio
- Jan
- Ollama
How to use AEmotionStudio/ComfyUI-Model-Backups with Ollama:
ollama run hf.co/AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
- Unsloth Studio
How to use AEmotionStudio/ComfyUI-Model-Backups with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for AEmotionStudio/ComfyUI-Model-Backups to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for AEmotionStudio/ComfyUI-Model-Backups to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for AEmotionStudio/ComfyUI-Model-Backups to start chatting
- Pi
How to use AEmotionStudio/ComfyUI-Model-Backups with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use AEmotionStudio/ComfyUI-Model-Backups with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use AEmotionStudio/ComfyUI-Model-Backups with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use AEmotionStudio/ComfyUI-Model-Backups with Docker Model Runner:
docker model run hf.co/AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
- Lemonade
How to use AEmotionStudio/ComfyUI-Model-Backups with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull AEmotionStudio/ComfyUI-Model-Backups:Q4_K_S
Run and chat with the model
lemonade run user.ComfyUI-Model-Backups-Q4_K_S
List all available models
lemonade list
Add controlnet backup
Browse files- controlnet/1.5/control_v11f1p_sd15_depth_fp16.safetensors +3 -0
- controlnet/1.5/control_v11p_sd15_canny_fp16.safetensors +3 -0
- controlnet/1.5/control_v11p_sd15_inpaint_fp16.safetensors +3 -0
- controlnet/1.5/control_v11p_sd15_lineart_fp16.safetensors +3 -0
- controlnet/1.5/control_v11p_sd15_seg_fp16.safetensors +3 -0
- controlnet/FLUX.1-dev-ControlNet-Union-Pro-2.0-fp8.safetensors +3 -0
- controlnet/FLUX.1-dev-Controlnet-Inpainting-Beta.safetensors +3 -0
- controlnet/Wan21_Uni3C_controlnet_fp16.safetensors +3 -0
- controlnet/control_lora_rank128_v11f1e_sd15_tile_fp16.safetensors +3 -0
- controlnet/control_lora_rank128_v11f1p_sd15_depth_fp16.safetensors +3 -0
- controlnet/control_lora_rank128_v11p_sd15_normalbae_fp16.safetensors +3 -0
- controlnet/control_lora_rank128_v11p_sd15_openpose_fp16.safetensors +3 -0
- controlnet/control_lora_rank128_v11p_sd15_scribble_fp16.safetensors +3 -0
- controlnet/control_lora_rank128_v11p_sd15_seg_fp16.safetensors +3 -0
- controlnet/control_v11p_sd15_canny_fp16.safetensors +3 -0
- controlnet/control_v11p_sd15_inpaint_fp16.safetensors +3 -0
- controlnet/control_v11p_sd15_lineart_fp16.safetensors +3 -0
- controlnet/control_v11p_sd15_softedge_fp16.safetensors +3 -0
- controlnet/control_v1p_sd15_qrcode_monster.safetensors +3 -0
- controlnet/control_v1p_sdxl_qrcode_monster.safetensors +3 -0
- controlnet/noob-sdxl-controlnet-depth_midas-v1-1.fp16.safetensors +3 -0
- controlnet/noob-sdxl-controlnet-lineart_anime.fp16.safetensors +3 -0
- controlnet/noob-sdxl-controlnet-normal.fp16.safetensors +3 -0
- controlnet/noob-sdxl-controlnet-scribble_pidinet.fp16.safetensors +3 -0
- controlnet/noob-sdxl-controlnet-softedge_hed.fp16.safetensors +3 -0
- controlnet/noob-sdxl-controlnet-tile.fp16.safetensors +3 -0
- controlnet/noob_sdxl_controlnet_canny.fp16.safetensors +3 -0
- controlnet/noobaiXLControlnet_openposeModel.safetensors +3 -0
- controlnet/xinsir-controlnet-union-sdxl-1.0-promax.safetensors +3 -0
controlnet/1.5/control_v11f1p_sd15_depth_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c4a79aa52fb63f607cb9ff479ea5aa1923b6ceb21267bd14b69bd05d7b617be
|
| 3 |
+
size 722601100
|
controlnet/1.5/control_v11p_sd15_canny_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8932b66e15aae835b3490dbf989f56c253104cee08a88bf21283762f557c9f10
|
| 3 |
+
size 722601100
|
controlnet/1.5/control_v11p_sd15_inpaint_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:677a4fe351edecd40cd0d7cc210a8686b59d4e55207317f12319ef746a7a5a89
|
| 3 |
+
size 722601100
|
controlnet/1.5/control_v11p_sd15_lineart_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10559106d1bb8196298b7a81565ede9279295d2b2df15165b9dbe189994def56
|
| 3 |
+
size 722601100
|
controlnet/1.5/control_v11p_sd15_seg_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:acd4dd3df2da2f1f2b9dd00f4504cc0d98b20afb608e25f1789a95c0ccdba14a
|
| 3 |
+
size 722601100
|
controlnet/FLUX.1-dev-ControlNet-Union-Pro-2.0-fp8.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:393fc2a298b93ffe39f2db3f0d2ce11dfba62d44b7aa3c1dd3380d4a1be04deb
|
| 3 |
+
size 2140902936
|
controlnet/FLUX.1-dev-Controlnet-Inpainting-Beta.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca46c5f7b5de02caee7c069f2aedbf628af8def8578319ceae3be1588d448448
|
| 3 |
+
size 4281803800
|
controlnet/Wan21_Uni3C_controlnet_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d7dd1bfe5f34dea607a749d72f206908e76a908b9999cb28c53c3eb167ddd709
|
| 3 |
+
size 1997314376
|
controlnet/control_lora_rank128_v11f1e_sd15_tile_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cec00369e99cfed1cec97e1124cf3220df7a99e45354eaa1e3350c485e65154f
|
| 3 |
+
size 135722816
|
controlnet/control_lora_rank128_v11f1p_sd15_depth_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7a0480805947f377985a8c2684b8e52cdd265fcb25b6604ea9409ace08db3d34
|
| 3 |
+
size 135722816
|
controlnet/control_lora_rank128_v11p_sd15_normalbae_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ca84010a8e832d3d2e671c7664ff345f645f3ef7e8359cbca3e2b36d86bcff30
|
| 3 |
+
size 135722816
|
controlnet/control_lora_rank128_v11p_sd15_openpose_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c8edde249e6b96f6c9b0516a243d75eb8adc38624efe171a9c8ab5fb1a69608
|
| 3 |
+
size 135722816
|
controlnet/control_lora_rank128_v11p_sd15_scribble_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1f0288cd6d490d9976a9f4c36282f3d47cb8e02dc6805aa44b38d4404fe008a
|
| 3 |
+
size 135722816
|
controlnet/control_lora_rank128_v11p_sd15_seg_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11937941597a67150ef0f74aa30f082b1634431080dee609d0231a9a59b7fa4f
|
| 3 |
+
size 135722816
|
controlnet/control_v11p_sd15_canny_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8932b66e15aae835b3490dbf989f56c253104cee08a88bf21283762f557c9f10
|
| 3 |
+
size 722601100
|
controlnet/control_v11p_sd15_inpaint_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:677a4fe351edecd40cd0d7cc210a8686b59d4e55207317f12319ef746a7a5a89
|
| 3 |
+
size 722601100
|
controlnet/control_v11p_sd15_lineart_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10559106d1bb8196298b7a81565ede9279295d2b2df15165b9dbe189994def56
|
| 3 |
+
size 722601100
|
controlnet/control_v11p_sd15_softedge_fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e78fea5b4599fec2ecd7e3f14b171feb290b88200c95d569ec0ff59a19bc3478
|
| 3 |
+
size 722601100
|
controlnet/control_v1p_sd15_qrcode_monster.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c7f43f70e266153d12f5e1bb1c9e7be3f4513cf0eef0432661b1331bfe11cadf
|
| 3 |
+
size 722596344
|
controlnet/control_v1p_sdxl_qrcode_monster.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11e49b4e272fabda60094b35be6fd3e215e551211210938e381d27497fd2215c
|
| 3 |
+
size 5004167864
|
controlnet/noob-sdxl-controlnet-depth_midas-v1-1.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:678b94ef3260744a1e9e50932ef8895e7f7fabf25eec7fd5cc96298f7220fe50
|
| 3 |
+
size 2502139136
|
controlnet/noob-sdxl-controlnet-lineart_anime.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:44eae6a514a60ae426ff966ecdbb9e170ad63d8889456982bb29037df42b86a8
|
| 3 |
+
size 2502139136
|
controlnet/noob-sdxl-controlnet-normal.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bcfc7ea417052dd54125c577d01e9cf7f0e81863ff6a75ce23b44eba1d7fa3d3
|
| 3 |
+
size 2502139136
|
controlnet/noob-sdxl-controlnet-scribble_pidinet.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ba55d75e34f63d0538c2dc1006415c495f254624c1c826df7dfaf4bc172ee47
|
| 3 |
+
size 2502139136
|
controlnet/noob-sdxl-controlnet-softedge_hed.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c540e9bb474d7b090cee5f45017ceba2d58775c71bc0f6eafa410b435b1dfd92
|
| 3 |
+
size 2502139136
|
controlnet/noob-sdxl-controlnet-tile.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d6d676f29153357ac8d57727e35b8edc090aa4de57e861b878872ff45c432615
|
| 3 |
+
size 2502139136
|
controlnet/noob_sdxl_controlnet_canny.fp16.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e37bcdb2f4a6d1782daf6a943a326bee6e6d3027c34f6016460a2c937ba9fba0
|
| 3 |
+
size 2502139104
|
controlnet/noobaiXLControlnet_openposeModel.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:918cfc4d7def165ea7a06bee10841fe525332515f8a0486c5cb2a171ec40b873
|
| 3 |
+
size 2502140008
|
controlnet/xinsir-controlnet-union-sdxl-1.0-promax.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9fae2e50cb431bfcbe05822b59ec2228df545ef27f711dea8949e9f4ed9f7cdc
|
| 3 |
+
size 2513342408
|