Safe Haskell | None |
---|---|
Language | Haskell2010 |
- class Nodes t where
- class Nodes t => Fetchable t a where
- data Fetch a = Fetch {
- fetches :: Set Text
- fetchRestore :: Map Text TensorData -> a
- nodesUnion :: (Monoid b, Traversable t, Applicative f) => t (f b) -> f b
- fetchTensorList :: TensorType a => Tensor v a -> Build (Fetch (Shape, [a]))
- fetchTensorVector :: forall a v. TensorType a => Tensor v a -> Build (Fetch (Shape, Vector a))
- newtype Scalar a = Scalar {
- unScalar :: a
Documentation
class Nodes t where
Types that contain ops which can be run.
class Nodes t => Fetchable t a where
Types that tensor representations (e.g. Tensor
, ControlNode
) can be
fetched into.
Includes collections of tensors (e.g. tuples).
(~) * a () => Fetchable ControlNode a | |
Fetchable t a => Fetchable [t] [a] | |
(TensorType a, (~) * a a') => Fetchable (Tensor v a) (Scalar a') | |
(TensorType a, (~) * a a') => Fetchable (Tensor v a) (Vector a') | |
(Fetchable t1 a1, Fetchable t2 a2) => Fetchable (t1, t2) (a1, a2) | |
(Fetchable t1 a1, Fetchable t2 a2, Fetchable t3 a3) => Fetchable (t1, t2, t3) (a1, a2, a3) |
data Fetch a
Fetch action. Keeps track of what needs to be fetched and how to decode the fetched data.
Fetch | |
|
nodesUnion :: (Monoid b, Traversable t, Applicative f) => t (f b) -> f b
fetchTensorList :: TensorType a => Tensor v a -> Build (Fetch (Shape, [a]))
fetchTensorVector :: forall a v. TensorType a => Tensor v a -> Build (Fetch (Shape, Vector a))
newtype Scalar a
Eq a => Eq (Scalar a) | |
Floating a => Floating (Scalar a) | |
Fractional a => Fractional (Scalar a) | |
Num a => Num (Scalar a) | |
Ord a => Ord (Scalar a) | |
Real a => Real (Scalar a) | |
RealFloat a => RealFloat (Scalar a) | |
RealFrac a => RealFrac (Scalar a) | |
Show a => Show (Scalar a) | |
IsString a => IsString (Scalar a) | |
(TensorType a, (~) * a a') => Fetchable (Tensor v a) (Scalar a') |