Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion spearmint/tasks/base_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def paramify_and_print(self, data_vector, left_indent=0, indent_top_row=False):
if i == 0:
sys.stderr.write(format_str % (indentation, param_name, param['type'], param['values'][i]))
else:
sys.stderr.write(format_str % (indentation, '', param['values'][i]))
sys.stderr.write(format_str % (indentation, '', '', param['values'][i]))

# Converts a vector in input space to the corresponding dict of params
def paramify(self, data_vector):
Expand Down