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
importpytensor.scalaraspsimportpytensor.tensoraspta=ps.float64("a")
b=pt.vector("b")
b*a# Finea*b# TypeError: TypeError: Cannot convert b to a scalar type
It tries to convert b to a scalar, which fails. When it fails, it should try to multiply b * a, which works