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
Wrong sample_shape when name is given and using size in the data model
import inferpy as inf
import tensorflow as tf
with inf.datamodel(size=100):
x = inf.Normal(tf.ones(4), 1, name="x")
x.sample_shape # []
with inf.datamodel(size=100):
x = inf.Normal(tf.ones(4), 1)
x.sample_shape # [100]
The text was updated successfully, but these errors were encountered:
Wrong sample_shape when name is given and using size in the data model
The text was updated successfully, but these errors were encountered: