Skip to content

Commit

Permalink
ignore nan results
Browse files Browse the repository at this point in the history
  • Loading branch information
KEggensperger committed Mar 11, 2015
1 parent f1afb41 commit 806a163
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions HPOlib/Plotting/plotParam.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@ def main(pkl_list, name_list, param=None, min_=0.0, max_=0.0,
key = len(string_to_value_map.keys()) + 1
string_to_value_map[value] = key
value = key
if np.isnan(t["result"]):
continue
value_list.append(value)
result_list.append(t["result"])
param_set.add(k)
Expand Down

0 comments on commit 806a163

Please sign in to comment.