packages feed

hnn-0.2.0.0: hnn.cabal

name:                hnn
version:             0.2.0.0
synopsis:            A reasonably fast and simple neural network library
description:         
    .
    A neural network library implemented purely in Haskell, relying on the
    hmatrix library.
    .
    This library provides a straight and simple feed-forward neural networks implementation which
    is way better than the one in hnn-0.1, in all aspects. It also provides a simple and little tested
    implementation of recurrent neural networks.
    .
    If you're interested in the feed-forward neural networks, please read the mini-tutorial on
    @AI.HNN.FF.Network@.
homepage:            http://github.com/alpmestan/hnn
bug-reports:         http://github.com/alpmestan/hnn/issues
license:             BSD3
license-file:        LICENSE
author:              Alp Mestanogullari <alpmestan@gmail.com>, Gatlin Johnson <rokenrol@gmail.com>
maintainer:          Alp Mestanogullari <alpmestan@gmail.com>
copyright:           2009-2014 Alp Mestanogullari, Gatlin Johnson
category:            AI
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:     AI.HNN.FF.Network, AI.HNN.Recurrent.Network
  build-depends:
    base >=4 && <5,
    vector,
    mwc-random,
    hmatrix >= 0.16,
    random,
    vector-binary-instances >= 0.2,
    binary,
    zlib,
    bytestring
  ghc-options:         -O2 -funbox-strict-fields -Wall
  ghc-prof-options:    -O2 -funbox-strict-fields -Wall -prof -auto-all -rtsopts

source-repository head
  type: git
  location: http://github.com/alpmestan/hnn.git