• ricardoV94's avatar
    Shape only accepts TensorVariables · d3eda996
    ricardoV94 提交于
    Before:
    shape(NoneType) -> np.shape(None) -> ()  (numpy tends to do this for things it doesn't understand)
    shape(TypedLists) -> shape(np.asarray(TypedList)) -> either converts or fails. Now TypedList are considered vectors / 1d like python lists
    d3eda996