Skip to content

Commit

Permalink
refactor: update fast_mode parameter in get_fitness function
Browse files Browse the repository at this point in the history
  • Loading branch information
saleh-mir committed Jun 30, 2024
1 parent 0187ff2 commit f0e8b42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jesse/modes/optimize_mode/fitness.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_fitness(
candles=training_candles,
warmup_candles=training_warmup_candles,
hyperparameters=hp,
fast_mode=True
fast_mode=False
)['metrics']
except Exception as e:
exc_type, exc_value, exc_traceback = sys.exc_info()
Expand Down Expand Up @@ -121,7 +121,7 @@ def get_fitness(
candles=testing_candles,
warmup_candles=testing_warmup_candles,
hyperparameters=hp,
fast_mode=True
fast_mode=False
)['metrics']

# log for debugging/monitoring
Expand Down

0 comments on commit f0e8b42

Please sign in to comment.