packages feed

fei-examples-0.3.0: fei-examples.cabal

name:           fei-examples
version:        0.3.0
synopsis:       fei examples
description:    Various fei examples
homepage:       https://github.com/pierric/fei-examples#readme
bug-reports:    https://github.com/pierric/fei-examples/issues
author:         Jiasen Wu
maintainer:     jiasenwu@hotmail.com
copyright:      2019 Jiasen Wu
license:        BSD3
license-file:   LICENSE
category:       Machine Learning, AI
build-type:     Simple
cabal-version:  >= 1.10

extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/pierric/fei-examples

Executable lenet
  main-is:              lenet.hs
  other-modules:        Model.Lenet
  hs-source-dirs:       src
  ghc-options:          -Wall
  default-language:     Haskell2010
  build-depends:        base >= 4.7 && < 5.0
                      , unordered-containers >= 0.2.8
                      , vector >= 0.12
                      , fei-base
                      , fei-nn
                      , fei-dataiter
  default-extensions:   OverloadedLabels
                      , TypeFamilies


Executable cifar10
  main-is:              cifar10.hs
  other-modules:        Model.Resnet,
                        Model.Resnext
  hs-source-dirs:       src
  ghc-options:          -Wall
  default-language:     Haskell2010
  build-depends:        base >= 4.7 && < 5.0
                      , unordered-containers >= 0.2.8
                      , vector >= 0.12
                      , optparse-applicative
                      , lens >= 4.12
                      , fei-base
                      , fei-nn
                      , fei-dataiter
  default-extensions:   OverloadedLabels
                      , TypeFamilies

Executable custom-op
  main-is:            custom-op.hs
  hs-source-dirs:     src
  default-language:     Haskell2010
  build-depends:        base >= 4.7 && < 5.0
                      , fei-base
                      , fei-nn
                      , fei-dataiter
                      , unordered-containers >= 0.2.8
                      , vector >= 0.12
  default-extensions:   OverloadedLabels
                      , TypeFamilies
                      , FlexibleInstances
Executable rcnn
  main-is:             rcnn.hs
  other-modules:       Model.VGG,
                       Model.FasterRCNN
  hs-source-dirs:      src
  ghc-options:          -Wall
  default-language:     Haskell2010
  build-depends:        base >= 4.7 && < 5.0
                      , unordered-containers >= 0.2.10
                      , vector >= 0.12
                      , optparse-applicative
                      , attoparsec
                      , text
                      , lens >= 4.12
                      , repa
                      , random-fu
                      , directory
                      , mtl
                      , conduit
                      , fei-base
                      , fei-nn
                      , fei-dataiter
                      , fei-cocoapi
  default-extensions:   OverloadedLabels
                      , TypeFamilies