Skip to content

Commit

Permalink
Merge branch 'feature/advanced-configuration' of https://github.com/l…
Browse files Browse the repository at this point in the history
…uxonis/datadreamer into feature/advanced-configuration
  • Loading branch information
HonzaCuhel committed Mar 25, 2024
2 parents 52f6426 + 6bd4642 commit b4f8a16
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datadreamer/prompt_generation/lm_synonym_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class LMSynonymGenerator(SynonymGenerator):

def __init__(
self,
synonyms_number: int = 5,
synonyms_number: int = 3,
seed: Optional[float] = 42,
device: str = "cuda",
) -> None:
Expand Down
2 changes: 1 addition & 1 deletion datadreamer/prompt_generation/synonym_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SynonymGenerator(ABC):

def __init__(
self,
synonyms_number: int = 5,
synonyms_number: int = 3,
seed: Optional[float] = 42,
device: str = "cuda",
) -> None:
Expand Down
2 changes: 1 addition & 1 deletion datadreamer/prompt_generation/wordnet_synonym_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class WordNetSynonymGenerator(SynonymGenerator):

def __init__(
self,
synonyms_number: int = 5,
synonyms_number: int = 3,
seed: Optional[float] = 42,
device: str = "cuda",
) -> None:
Expand Down
4 changes: 2 additions & 2 deletions media/coverage_badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b4f8a16

Please sign in to comment.