MarkusThill / bioma-tcn-ae

Minimal Working Example of a (baseline) Temporal Convolutional Autoencoder (TCN-AE) for Anomaly Detection in Time Series
41 stars 14 forks source link

Usage of Conv1DTranspose #2

Open mkaanerkoc opened 2 years ago

mkaanerkoc commented 2 years ago

Conv1DTranspose layer of Keras shall be used instead of UpSampling1D since it only does upsampling, not deconvolution.

Place in the code: https://github.com/MarkusThill/bioma-tcn-ae/blob/main/src/tcnae.py#L127

Conv1DTranspose: https://keras.io/api/layers/convolution_layers/convolution1d_transpose/