Unsupervised_Deep_Learning icon indicating copy to clipboard operation
Unsupervised_Deep_Learning copied to clipboard

Unsupervised (Self-Supervised) Clustering of Seismic Signals Using Deep Convolutional Autoencoders

Results 1 Unsupervised_Deep_Learning issues
Sort by recently updated
recently updated
newest added

Hi, In you code, the input and outputs for the model are defined as below: `model = Model(inputs=encoder.input, outputs=[clustering_layer, autoencoder.output])` Then for fine-tuning step, we have: `model.train_on_batch(x=x[idx], y=[p[idx], x[idx]])` Shouldn't...