deep-clustering
deep-clustering copied to clipboard
Mistake in visualization_of_samples.py
In line 50 of visualization_of_samples.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)
@nagakei05 @pramodhrachuri Thanks man
Thank you people!!