1
stars
500
commits
1
linked in READMEs
Jul 8, 2026
updated
Shared analysis results for the LoRA Optimizer ComfyUI node.
LoRA merge analysis is hardware-agnostic — the same LoRA files always produce the same conflict metrics and optimal merge config regardless of GPU tier. This dataset lets users share and reuse those results so nobody has to run the AutoTuner from scratch.
The AutoTuner computes pairwise conflict metrics (cosine similarity, sign conflicts, subspace overlap) and tests merge parameter combinations to find the best config for a set of LoRAs. These results are keyed by content hash (SHA256[:16] of file contents) — not by filename — so they're portable across systems and private by design.
When community_cache=upload_and_download is set in the AutoTuner node:
LoRA filenames are never stored here. Only SHA256[:16] content hashes are used as keys. The uploaded data contains:
No file paths, no usernames, no LoRA names.
lora/
{content_hash}.lora.json # Per-LoRA per-prefix conflict stats
pair/
{hash_a}_{hash_b}.pair.json # Pairwise conflict metrics (hashes sorted)
config/
{hash_a}_{hash_b}_..._{arch}.config.json # Best merge config + score for a LoRA set
All files include an algo_version field. Results from incompatible algorithm versions are ignored automatically.
In the LoRA AutoTuner node, set community_cache to upload_and_download. That's the only option — there's no passive download-only mode. If you benefit from the cache, you contribute back.
| Value | Behavior |
|---|---|
disabled (default) | No network interaction |
upload_and_download | Download precomputed results and contribute yours back |
Network errors are silently ignored — the node always falls back to local computation.
One time:
pip install huggingface_hub
huggingface-cli login
The node picks up your stored token automatically. No environment variables needed for most users.
Headless/server alternative: set HF_TOKEN as an environment variable.
Then: set community_cache=upload_and_download in the AutoTuner node and run as normal. Everything else is automatic.
Configs are only uploaded when your local score beats the community score. Users with more thorough sweeps (top_n=10) or better hardware naturally contribute higher-quality results over time.
500 commits
1
stars
500
commits
1
linked in READMEs
Jul 8, 2026
updated
Shared analysis results for the LoRA Optimizer ComfyUI node.
LoRA merge analysis is hardware-agnostic — the same LoRA files always produce the same conflict metrics and optimal merge config regardless of GPU tier. This dataset lets users share and reuse those results so nobody has to run the AutoTuner from scratch.
The AutoTuner computes pairwise conflict metrics (cosine similarity, sign conflicts, subspace overlap) and tests merge parameter combinations to find the best config for a set of LoRAs. These results are keyed by content hash (SHA256[:16] of file contents) — not by filename — so they're portable across systems and private by design.
When community_cache=upload_and_download is set in the AutoTuner node:
LoRA filenames are never stored here. Only SHA256[:16] content hashes are used as keys. The uploaded data contains:
No file paths, no usernames, no LoRA names.
lora/
{content_hash}.lora.json # Per-LoRA per-prefix conflict stats
pair/
{hash_a}_{hash_b}.pair.json # Pairwise conflict metrics (hashes sorted)
config/
{hash_a}_{hash_b}_..._{arch}.config.json # Best merge config + score for a LoRA set
All files include an algo_version field. Results from incompatible algorithm versions are ignored automatically.
In the LoRA AutoTuner node, set community_cache to upload_and_download. That's the only option — there's no passive download-only mode. If you benefit from the cache, you contribute back.
| Value | Behavior |
|---|---|
disabled (default) | No network interaction |
upload_and_download | Download precomputed results and contribute yours back |
Network errors are silently ignored — the node always falls back to local computation.
One time:
pip install huggingface_hub
huggingface-cli login
The node picks up your stored token automatically. No environment variables needed for most users.
Headless/server alternative: set HF_TOKEN as an environment variable.
Then: set community_cache=upload_and_download in the AutoTuner node and run as normal. Everything else is automatic.
Configs are only uploaded when your local score beats the community score. Users with more thorough sweeps (top_n=10) or better hardware naturally contribute higher-quality results over time.
500 commits