Hi,
I am new to this forum and this is my first post.
I am trying to create a generator which will take a random vector as input from a RNN. I would like this random vector to follow standard normal distribution.
The way I thought about implementing this was for the RNN to output a random seed and a custom layer which will take this random seed and create a normal distribution.
However, I am having difficulty implementing this as the RNN outputs a keras tensor and I having difficulty converting this within the custom layer to an integer seed.
Any thoughts from the community on how to implement this?
Thanks,