All Questions
3 questions
0
votes
1
answer
474
views
ValueError: All layers added to a Sequential model should have unique names
I am trying to train a VAE model for music generation.
When I run the following program, it shows an error:
All layers added to a Sequential model should have unique names. Name "" is ...
0
votes
1
answer
300
views
tf.keras.backend.function for transforming embeddings inside tf.data.dataset
I am trying to use the output of a neural network to transform data inside tf.data.dataset. Specifically, I am using a Delta-Encoder to manipulate embeddings inside the tf.data pipeline. In so doing,...
0
votes
1
answer
983
views
How to plot ROC curve and compute AUC on AutoEncoder model? [duplicate]
I created an autoencoder model and train it with image sequence dataset. The final result of testset is a reconstructed images. How can I plot ROC curve and calculate AUC?
Edited:
This is my code:
...