hyperas
hyperas copied to clipboard
Keras + Hyperopt: A very simple wrapper for convenient hyperparameter optimization
i just changed the line #rstate=np.random.RandomState(rseed), by rstate=np.random.default_rng(rseed), to allow compatibility with hyperopt==0.2.7
The error: --------------------------------------------------------------------------- ``` AttributeError Traceback (most recent call last) in () 3 algo= tpe.suggest, max_evals= 5, 4 trials= Trials(), ----> 5 notebook_name='Deep learning GridSearch') 6 xtr, ytr, xte, yte=...
Helo there, I have the following code. a global variable that num_gpu that indicates the number of gpus availavle. If I can data() or create_mode() separate everything is fine. But...
The above error indicates to me that the build on the supercomputer I am using to train. It is the same as the one here: https://github.com/maxpumperla/hyperas/issues/284 . I reset hyperas...
I am having trouble running hyperas on Databricks (I am using the same code as the code example provided). The issue is that as I am using a notebook in...
I have encountered this issue where the hyper optimisation code tries to execute a block of raw text somewhere else in the notebook, raising a ridiculous Syntax Error. Sometimes it...
For example, if I test dropout and l2_regularization through hyperas optimization, is there a way to return the set of data which relates the loss metrics of each NN configuration?...
import numpy as np import pandas as pd import matplotlib.colors as mcolors import random import math import time from sklearn.model_selection import RandomizedSearchCV, train_test_split from sklearn.svm import SVR from sklearn.metrics import...
The error occurred before model evaluation: ``` Epoch 1/2 422/422 - 3s - loss: 1.7380 - accuracy: 0.4183 - val_loss: 0.8082 - val_accuracy: 0.8570 Epoch 2/2 422/422 - 2s -...
Hi, great library! I was just wondering, is there an easy way to save off the hyperparameter choices and best loss/accuracy from each of the trials that are done?