Skip to content

Commit

Permalink
switch default algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
pudo committed Dec 1, 2023
1 parent c9492c8 commit 483c0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yente/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def env_str(name: str, default: str) -> str:
CRONTAB = env_str("YENTE_CRONTAB", "*/30 * * * *")
AUTO_REINDEX = as_bool(env_str("YENTE_AUTO_REINDEX", "true"))
STREAM_LOAD = as_bool(env_str("YENTE_STREAM_LOAD", "true"))
DEFAULT_ALGORITHM = env_str("YENTE_DEFAULT_ALGORITHM", "regression-v1")
DEFAULT_ALGORITHM = env_str("YENTE_DEFAULT_ALGORITHM", "logic-v1")
BEST_ALGORITHM = env_str("YENTE_BEST_ALGORITHM", "logic-v1")

DATA_PATH = Path(env_str("YENTE_DATA_PATH", "/tmp"))
Expand Down

0 comments on commit 483c0a6

Please sign in to comment.