I have a problem when I want to save the VAE model after the training. This is because this
z = Lambda(self.sampling, output_shape=(self.latent_dim,))(
[z_mean, z_log])
Specifically, the Lambda layer cannot be saved into file. Could you give me any advice to save it?