Open pramodhrachuri opened 6 years ago
In line 50 of _visualization_ofsamples.py, we are trying to initializing the model with 3 parameters, but as per the model.py file, it needs 4.
Please give it a check.
@pramodhrachuri try changing the line as below. it should work. BiModel = Model(n_hidden, batch_size, 1, 1)
BiModel = Model(n_hidden, batch_size, 1, 1)
@nagakei05 @pramodhrachuri Thanks man
Thank you people!!
In line 50 of _visualization_ofsamples.py, we are trying to initializing the model with 3 parameters, but as per the model.py file, it needs 4.
Please give it a check.