Skip to content

Commit

Permalink
remove unused script field from training BaseConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
limiteinductive committed Jan 11, 2024
1 parent 9148008 commit e781a20
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions configs/finetune-ldm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
script = "finetune-ldm.py" # not used for now

[wandb]
mode = "offline"
entity = "acme"
Expand Down
2 changes: 0 additions & 2 deletions configs/finetune-lora.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
script = "finetune-ldm-lora.py" # not used for now

[wandb]
mode = "offline" # "online", "offline", "disabled"
entity = "acme"
Expand Down
2 changes: 0 additions & 2 deletions configs/finetune-textual-inversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
script = "finetune-ldm-textual_inversion.py" # not used for now

[wandb]
mode = "offline" # "online", "offline", "disabled"
entity = "acme"
Expand Down
1 change: 0 additions & 1 deletion src/refiners/training_utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ def parse_field(cls, value: Any) -> TimeValue:


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
Expand Down

0 comments on commit e781a20

Please sign in to comment.