mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 23:12:02 +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]
|
[wandb]
|
||||||
mode = "offline"
|
mode = "offline"
|
||||||
entity = "acme"
|
entity = "acme"
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
script = "finetune-ldm-lora.py" # not used for now
|
|
||||||
|
|
||||||
[wandb]
|
[wandb]
|
||||||
mode = "offline" # "online", "offline", "disabled"
|
mode = "offline" # "online", "offline", "disabled"
|
||||||
entity = "acme"
|
entity = "acme"
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
script = "finetune-ldm-textual_inversion.py" # not used for now
|
|
||||||
|
|
||||||
[wandb]
|
[wandb]
|
||||||
mode = "offline" # "online", "offline", "disabled"
|
mode = "offline" # "online", "offline", "disabled"
|
||||||
entity = "acme"
|
entity = "acme"
|
||||||
|
|
|
@ -219,7 +219,6 @@ T = TypeVar("T", bound="BaseConfig")
|
||||||
|
|
||||||
|
|
||||||
class BaseConfig(BaseModel):
|
class BaseConfig(BaseModel):
|
||||||
script: Path # TODO not used for now, but will be used by the cli
|
|
||||||
models: dict[str, ModelConfig]
|
models: dict[str, ModelConfig]
|
||||||
wandb: WandbConfig
|
wandb: WandbConfig
|
||||||
training: TrainingConfig
|
training: TrainingConfig
|
||||||
|
|
Loading…
Reference in a new issue