Hi,
As explained in this discourse thread, the current normalizing flow example does not produce accurate results.

Chris Rackauckas suggested increasing the network size. I tried increasing the training set to 1,000 and the following larger network without success:
nn = Flux.Chain(
Flux.Dense(1, 100, tanh),
Flux.Dense(100, 100, tanh),
Flux.Dense(100, 1, tanh),
)
