Neural nets in Haskell

Posted: 2016-12-25 , Modified: 2016-12-25

Tags: haskell, functional programming

data Tensor dim a where
  ZTensor :: a -> Tensor '[] a
  STensor :: Vec n (Tensor dim a) -> Tensor (n ': dim) a

Automatic differentiation

Tensorflow