You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used this hl.build_graph(graph(train_inputs), torch.zeros([1, 3, 32, 32]).cuda()) instead and hiddenlayer gave me the following error:
Traceback (most recent call last):
File "/home/phung/PycharmProjects/beginner_tutorial/gdas.py", line 793, in <module>
ltrain = train_NN(forward_pass_only=0)
File "/home/phung/PycharmProjects/beginner_tutorial/gdas.py", line 429, in train_NN
hl.build_graph(graph(train_inputs), torch.zeros([1, 3, 32, 32]).cuda())
File "/usr/lib/python3.9/site-packages/hiddenlayer/graph.py", line 148, in build_graph
raise ValueError("`model` input param must be a PyTorch, TensorFlow, or Keras-with-TensorFlow-backend model.")
ValueError: `model` input param must be a PyTorch, TensorFlow, or Keras-with-TensorFlow-backend model.
I think within the graph() you should not pass the train_inputs. Try without giving the train_inputs, i.e, try this instead, hl.build_graph(graph(), torch.zeros([1, 3, 32, 32]).cuda())
I tried to use
hiddenlayer
on this network architecture search coding for the following search architecture, however the code could not exit and is insidebuild_graph()
forever.The text was updated successfully, but these errors were encountered: