Eudald Correig Fraga
Eudald Correig Fraga
It's a workaround of the workaround, but I'm running my app in a server and I don't want to install "fa" from github (because then the deployments need devtools and...
@swertz it's not great but more elegant than manually converting, you can do: ``` from hyperopt.pyll.base import scope @scope.define def to_int(x): return int(x) ``` and then ``` 'epochs': scope.to_int(hp.quniform('epochs', 100,...
@hmanz i don't understand why they didn't put a lower bound, but you can do it manually by: ``` 'whatever': 20 + hp.randint('whatever', 100), ``` so that now 'whatever' goes...