stable-diffusion-webui
stable-diffusion-webui copied to clipboard
fix arg for train_hypernetwork api
Very small modification.
The argument of train_hypernetworks
in api.py is args: dict
, so it is needed to pass **args
to train_hypernetworks
in modules.hypernetworks.hypernetwork
. Since *args
passes only the dict key, it is necessary to change to **args
.