larray.CheckedArray
- larray.CheckedArray(axes: ~larray.core.axis.AxisCollection, dtype: ~numpy.dtype = <class 'float'>) Type[Array][source]
Represents a constrained array. It is intended to only be used along with
CheckedSession.Its axes are assumed to be “frozen”, meaning they are constant all along the execution of the program. A constraint on the dtype of the data can be also specified.
- Parameters
- axes: AxisCollection
Axes of the checked array.
- dtype: data-type, optional
Data-type for the checked array. Defaults to float.
- Returns
- Array
Constrained array.