Philipp Kainz

Results 9 comments of Philipp Kainz

The data for each instance that should be updated must be a separate json `dict` in the payload. Even if you apply a filter to the queryset, only the instances...

@ben0it8 Check the [complex.py](https://github.com/maxpumperla/hyperas/blob/master/examples/complex.py#L73) example. The parameters are returned in `best_run`, to print them use e.g. ```python print("Parameters of best run", best_run) ``` **EDIT** That's just working for non-`choice` cases.

@ben0it8 This issue has been addressed in PR #104 and should resolve your problem.

@resuly To get the real value, you need to _evaluate the hyperparameter space_. **Option 1 - from scratch** Change the call to the optimization function to this one: ```python best_run,...

@maxpumperla Which version are you using? I don't have issues with PyCharm 2017.1.3.

Sorry for my late reply. > Why do we need the yet another mixin classes from the concurrency/mixins.py? For example, we could add a new parameter to a etag decorator:...

I can confirm that issue with version 2.10-SNAPSHOT. When I use `touch -m file.pdf` everything pre-serialization seems to be fine, but the created date seems to be set to the...

You have to evaluate your `space4rf` variable at the point `best` using the `hyperopt.space_eval` function to see `hp.choice` parameter values in the output. Check out the docs at https://jaberg.github.io/hyperopt/. This...

Check if the `low` and `high` arguments are correctly set in your definition of the parameter distribution. In #221 the situation is similar: ```python # original space definition hp.loguniform("L2", np.log(10**(-2)),...