Safe Haskell | None |
---|---|
Language | Haskell2010 |
- tsne3D :: TSNEOptions -> TSNEInput -> Producer TSNEOutput3D IO ()
- forTsne3D :: (TSNEOutput3D -> IO ()) -> TSNEOptions -> TSNEInput -> IO ()
- data TSNEOptions = TSNEOptions {}
- data TSNEOutput3D = TSNEOutput3D {
- tsneIteration :: Int
- tsneSolution3D :: [Position3D]
- tsneCost :: Double
Documentation
tsne3D :: TSNEOptions -> TSNEInput -> Producer TSNEOutput3D IO () Source #
Generates an infinite stream of 3D tSNE iterations.
forTsne3D :: (TSNEOutput3D -> IO ()) -> TSNEOptions -> TSNEInput -> IO () Source #
Executes an IO action for each iteration of the 3D tSNE algorithm.
data TSNEOptions Source #