as part of my work I am currently studying the code provided here : https://github.com/Era-Dorta/tf_mvg/blob/master/examples/autoencoder_mvg_chol_filters.py
I have a question about line 60 of this script, in the function decode_covar() :
log_diag_chol_precision = keras.layers.Lambda(lambda x: x[..., 0])(chol_half_weights)
What is the function which is here used by the layer Lambda ? I believe it is zero-padding, but I could use a confirmation.
I thank you in advance.