Skip to content

Commit 49abd7f

Browse files
committed
Fix wrong default parameters update
1 parent e1987c4 commit 49abd7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controlnet_aux/processor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(self, processor_id: str, params: Optional[Dict] = None) -> None:
100100
self.processor = self.load_processor(self.processor_id)
101101

102102
# load default params
103-
self.params = MODELS[self.processor_id]
103+
self.params = MODEL_PARAMS[self.processor_id]
104104
# update with user params
105105
if params:
106106
self.params.update(params)

0 commit comments

Comments
 (0)