neptune-backend-0.3.0: Neptune Client
Copyright(c) Jiasen Wu 2020
LicenseBSD-3-Clause
Safe HaskellNone
LanguageHaskell2010

Neptune

Description

This is a client library for https://neptune.ai

Example:

main = do
    -- Experiment sandbox must be created from the Neptune dashboard
    withNept "jiasen/sandbox" $ session experiment -> do
        forM_ [1..10::Int] $ i -> do
            -- You can log a name-value pair.
            nlog experiment "counter" (fromIntegral (i * i) :: Double)
            threadDelay 1000000

Documentation