mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-12 16:18:22 +00:00
remove unused script field from training BaseConfig
This commit is contained in:
parent
d7cce87fa4
commit
3ab8ed2989
|
@ -1,5 +1,3 @@
|
|||
script = "finetune-ldm.py" # not used for now
|
||||
|
||||
[wandb]
|
||||
mode = "offline"
|
||||
entity = "acme"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
script = "finetune-ldm-lora.py" # not used for now
|
||||
|
||||
[wandb]
|
||||
mode = "offline" # "online", "offline", "disabled"
|
||||
entity = "acme"
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
script = "finetune-ldm-textual_inversion.py" # not used for now
|
||||
|
||||
[wandb]
|
||||
mode = "offline" # "online", "offline", "disabled"
|
||||
entity = "acme"
|
||||
|
|
|
@ -219,7 +219,6 @@ T = TypeVar("T", bound="BaseConfig")
|
|||
|
||||
|
||||
class BaseConfig(BaseModel):
|
||||
script: Path # TODO not used for now, but will be used by the cli
|
||||
models: dict[str, ModelConfig]
|
||||
wandb: WandbConfig
|
||||
training: TrainingConfig
|
||||
|
|
Loading…
Reference in a new issue