Unverified Commit 4a3d5285 authored by camaro's avatar camaro Committed by GitHub
Browse files

fix: keyword argument mismatch (#6895)

parent 97d004b9
...@@ -92,7 +92,7 @@ These are Custom Diffusion adaption weights for {base_model}. The weights were t ...@@ -92,7 +92,7 @@ These are Custom Diffusion adaption weights for {base_model}. The weights were t
from_training=True, from_training=True,
license="creativeml-openrail-m", license="creativeml-openrail-m",
base_model=base_model, base_model=base_model,
instance_prompt=prompt, prompt=prompt,
model_description=model_description, model_description=model_description,
inference=True, inference=True,
) )
......
...@@ -97,7 +97,7 @@ DreamBooth for the text encoder was enabled: {train_text_encoder}. ...@@ -97,7 +97,7 @@ DreamBooth for the text encoder was enabled: {train_text_encoder}.
from_training=True, from_training=True,
license="creativeml-openrail-m", license="creativeml-openrail-m",
base_model=base_model, base_model=base_model,
instance_prompt=prompt, prompt=prompt,
model_description=model_description, model_description=model_description,
inference=True, inference=True,
) )
......
...@@ -99,7 +99,7 @@ LoRA for the text encoder was enabled: {train_text_encoder}. ...@@ -99,7 +99,7 @@ LoRA for the text encoder was enabled: {train_text_encoder}.
from_training=True, from_training=True,
license="creativeml-openrail-m", license="creativeml-openrail-m",
base_model=base_model, base_model=base_model,
instance_prompt=prompt, prompt=prompt,
model_description=model_description, model_description=model_description,
inference=True, inference=True,
) )
......
...@@ -122,7 +122,7 @@ Weights for this model are available in Safetensors format. ...@@ -122,7 +122,7 @@ Weights for this model are available in Safetensors format.
from_training=True, from_training=True,
license="openrail++", license="openrail++",
base_model=base_model, base_model=base_model,
instance_prompt=instance_prompt, prompt=instance_prompt,
model_description=model_description, model_description=model_description,
widget=widget_dict, widget=widget_dict,
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment