Skip to content

Commit

Permalink
chore: Update Display class in oracle.py with col_width parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Anselmoo committed Aug 30, 2024
1 parent 417e5b5 commit 3a0f6ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keras_tuner/engine/oracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ def wrapped_func(*args, **kwargs):

# TODO: Add more extensive display.
class Display(stateful.Stateful):
def __init__(self, oracle, verbose=1):
def __init__(self, oracle, verbose=1, col_width=18):
self.verbose = verbose
self.oracle = oracle
self.col_width = 18
self.col_width = col_width

# Start time for the overall search
self.search_start = None
Expand Down

0 comments on commit 3a0f6ce

Please sign in to comment.