Max Pumperla

Results 113 comments of Max Pumperla

hyperopt does this for you implicitly when you pass these extra parameters, would be in this line: https://github.com/maxpumperla/hyperas/blob/master/hyperas/optim.py#L73 to use this in hyperas, just pass them here: https://github.com/maxpumperla/hyperas/blob/master/examples/simple.py#L65

@virtualdvid unfortunately, it doesn't work as you want. hyperas gets translated to hyperopt. hyperopt first samples from the search space and then plugs it into the resp. places. If you...

@Jie-Yuan is this executed from a notebook? If so, make sure you understand the notebook example (https://github.com/maxpumperla/hyperas/blob/master/examples/simple_notebook.ipynb) and examine some of the existing issues on this topic. If not, simply...

This is something we would have to raise in `hyperopt` itself. It's not a simple matter, but very interesting. certainly doesn't just happen out of the box

Can you try to remove the comment in the very line you load the data?

yeah, I think in notebooks you can call imports at the beginning of each cell, but ``` from __future__ import print_function ``` etc. have to be at the beginning of...

hey @simahgh, it seems the future import is correctly put at the beginning of the file, but then we see it again imported later in the file. Can you please...

@simahgh it seems hyperas parses the imports in reversed order. How exactly do you invoke python? Can you run examples/simple.py? It has the same import structure as yours and it...

the error indicates there are no `{{}}` patterns found in your model definition, hence `parts` is empty. We've recently had a fix for removing comments from scripts, so you might...

Thanks for providing the gist, much easier like this. So, stuff like: ``` depth_par = [3, 4, 5] size_par = [72, 144, 256, 512, 1024] activation_par = ["ReLU", "ELU"] lr_par...