You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to implement affine (surjective) masked coupling flow, with bijective layer of MaskedCoupling and surjective layer of MaskedCouplingInferenceFunnel. I named the function as make_mcf, it is similar to make_spf except I use ScalarAffine as bijective function.
Actually, this implementation is from the function of make_spf which uses spline network as bijective function and MaskedCouplingInferenceFunnel. I modified make_spf by changing spline network to ScalerAffine.
I was trying to implement
affine (surjective) masked coupling flow
, with bijective layer ofMaskedCoupling
and surjective layer ofMaskedCouplingInferenceFunnel
. I named the function as make_mcf, it is similar to make_spf except I use ScalarAffine as bijective function.It appears error: the shape of (100,8,1) and (100,8) is not compatible.
so I change the
as
Now, it works. I am not sure this is the best way to resolve this issue. If you find better way, please let me know.
Thanks!
The text was updated successfully, but these errors were encountered: