Skip to content

Commit

Permalink
improved TPE doc
Browse files Browse the repository at this point in the history
  • Loading branch information
claesenm committed May 16, 2015
1 parent 0bce634 commit 1956300
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion optunity/solvers/TPE.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,17 @@ class TPE(Solver):
"""

def __init__(self, num_evals=100, seed=None, **kwargs):
"""blah
"""
Initialize the TPE solver.
:param num_evals: number of permitted function evaluations
:type num_evals: int
:param seed: the random seed to be used
:type num_evals: double
:param kwargs: box constraints for each hyperparameter
:type kwargs: {'name': [lb, ub], ...}
"""
if not _hyperopt_available:
Expand Down

0 comments on commit 1956300

Please sign in to comment.