Skip to content

Commit

Permalink
remove default hf_repo from config
Browse files Browse the repository at this point in the history
  • Loading branch information
limiteinductive committed Dec 20, 2023
1 parent dc123ec commit 43ca0f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/finetune-textual-inversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dropout_probability = 0
use_gyro_dropout = false

[dataset]
hf_repo = "acme/cat-toy"
hf_repo = "acme/images"
revision = "main"
horizontal_flip = true
random_crop = true
Expand Down
2 changes: 1 addition & 1 deletion src/refiners/training_utils/huggingface_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def load_hf_dataset(


class HuggingfaceDatasetConfig(BaseModel):
hf_repo: str = "finegrain/unsplash-dummy"
hf_repo: str
revision: str = "main"
split: str = "train"
horizontal_flip: bool = False
Expand Down

0 comments on commit 43ca0f2

Please sign in to comment.