HypernetworkLoader_motorway_edition
Load a hypernetwork — a blast from the SD1.5 past — through the Motorway pipe
- MOTORWAY 🚌💨
- MOTORWAY 🚌💨
Hypernetworks are the format nobody makes anymore. They were the pre-LoRA way to steer a model - small helper networks patched into the cross-attention blocks - and then LoRA showed up, trained faster, and ate the whole niche. If you're reaching for a hypernetwork today, it's almost certainly a legacy SD1.5-era .pt file you found on an old model page. This node loads exactly that.
HypernetworkLoader_motorway_edition is the stock ComfyUI HypernetworkLoader re-skinned as a MOTORWAY 🚌💨 pipe node from agilly1989/ComfyUI_agilly1989_motorway. Where the normal loader takes a model on a wire, this one reads the model out of the pipe by key, patches it with the hypernetwork, and writes the result back into the pipe.
The inputs that matter
INPUT_model_key(default"model") - pipe key holding the MODEL to patchhypernetwork_name- the dropdown; it lists files fromComfyUI/models/hypernetworks, populated at runtimestrength(FLOAT, −10 to 10, default 1) - how hard the patch appliesOUTPUT_MODEL_key(default"MODEL") - pipe key for the patched model
The output is the Motorway itself; the patched model lives in the pipe under OUTPUT_MODEL_key. A typical chain: an earlier node stored your base model under "model", this node patches it and stores the result under "MODEL", and whatever samples next reads "MODEL". Mind the defaults - read keys default to lowercase, write keys to uppercase, so if you're chaining clones you have to line the strings up yourself.
How it works
The wrapper pops the Motorway, pulls the model out using the key string, calls stock HypernetworkLoader with your strength, then stores the returned MODEL under the output key and returns a cloned pipe. strength above 1 pushes hard and tends to oversaturate; most old hypernetworks were tuned around 0.5–1.0. Start there.
Installing
cd ComfyUI/custom_nodes
git clone https://github.com/agilly1989/ComfyUI_agilly1989_motorway
Restart, or grab it via ComfyUI Manager by searching "motorway". No extra dependencies, no model downloads from the pack itself - the only model you need is whatever hypernetwork file you already have.
Gotchas
Two things worth knowing. First, keys are exact and case-sensitive: a hash_-related error or a "key doesn't exist in motorway" error means your key string doesn't match anything written earlier. Second, this whole *_motorway_edition family is the pack's experimental clone feature, currently disabled in the 1.1.7 hotfix - so on the latest release the node may not show up in your menu even though the definition still lives in the source. If it's there, though, it does exactly what the stock loader does, just with the plumbing moved into the pipe.
Inputs (5)
| Name | Type | Default | Description |
|---|---|---|---|
| MOTORWAY 🚌💨 | MOTORWAY 🚌💨 | — | |
| INPUT_model_key | STRING | model | — |
| hypernetwork_name | COMBO | 0 options: | |
| strength | FLOAT | 1.00-10–10 | — |
| OUTPUT_MODEL_key | STRING | MODEL | — |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| MOTORWAY 🚌💨 | MOTORWAY 🚌💨 | — |