remove unused script field from training BaseConfig

This commit is contained in:
limiteinductive 2024-01-11 10:53:39 +01:00 committed by Benjamin Trom
parent d7cce87fa4
commit 3ab8ed2989
4 changed files with 0 additions and 7 deletions

View file

@ -1,5 +1,3 @@
script = "finetune-ldm.py" # not used for now
[wandb]
mode = "offline"
entity = "acme"

View file

@ -1,5 +1,3 @@
script = "finetune-ldm-lora.py" # not used for now
[wandb]
mode = "offline" # "online", "offline", "disabled"
entity = "acme"

View file

@ -1,5 +1,3 @@
script = "finetune-ldm-textual_inversion.py" # not used for now
[wandb]
mode = "offline" # "online", "offline", "disabled"
entity = "acme"

View file

@ -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