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
This should be the line model = drnn.DRNN(n_input, n_hidden, n_layers, dropout, cell_type)
or model = drnn.DRNN(n_input=n_input, n_hidden=n_hidden, n_layers=n_layers, cell_type=cell_type)
otherwise following error: ValueError: could not convert string to float: 'GRU'
The text was updated successfully, but these errors were encountered:
This should be the line
model = drnn.DRNN(n_input, n_hidden, n_layers, dropout, cell_type)
or
model = drnn.DRNN(n_input=n_input, n_hidden=n_hidden, n_layers=n_layers, cell_type=cell_type)
otherwise following error:
ValueError: could not convert string to float: 'GRU'
The text was updated successfully, but these errors were encountered: