zhr1201 / deep-clustering

A tensorflow implementation for Deep clustering: Discriminative embeddings for segmentation and separation
135 stars 70 forks source link

Mistake in visualization_of_samples.py #14

Open pramodhrachuri opened 6 years ago

pramodhrachuri commented 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.

nagakei05 commented 6 years ago

@pramodhrachuri try changing the line as below. it should work. BiModel = Model(n_hidden, batch_size, 1, 1)

zhr1201 commented 6 years ago

@nagakei05 @pramodhrachuri Thanks man

pramodhrachuri commented 6 years ago

Thank you people!!