-
Notifications
You must be signed in to change notification settings - Fork 0
/
fei-modelzoo.cabal
73 lines (71 loc) · 2.99 KB
/
fei-modelzoo.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
cabal-version: 2.4
name: fei-modelzoo
version: 2.0.0
synopsis: A collection of standard models
description: A collection of standard models
homepage: http://github.com/pierric/fei-modelzoo
license: BSD-3-Clause
license-file: LICENSE
author: Jiasen Wu
maintainer: jiasenwu@hotmail.com
copyright: 2020 - Jiasen Wu
category: Machine Learning, AI
build-type: Simple
Library
exposed-modules: MXNet.NN.ModelZoo.Lenet
MXNet.NN.ModelZoo.VGG
MXNet.NN.ModelZoo.Resnet
MXNet.NN.ModelZoo.Resnext
MXNet.NN.ModelZoo.LambdaLayer
MXNet.NN.ModelZoo.RCNN.FPN
MXNet.NN.ModelZoo.RCNN.RCNN
MXNet.NN.ModelZoo.RCNN.MaskRCNN
MXNet.NN.ModelZoo.RCNN.FasterRCNN
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
default-extensions: GADTs,
TypeFamilies,
OverloadedLabels,
OverloadedStrings,
FlexibleContexts,
FlexibleInstances,
StandaloneDeriving,
RecordWildCards,
DataKinds,
TypeOperators,
TypeApplications,
PartialTypeSignatures,
LambdaCase,
MultiWayIf,
DoAndIfThenElse,
TemplateHaskell,
NoImplicitPrelude
build-depends: base >= 4.7 && < 5.0
, lens
, transformers-base
, lens
, random-fu
, vector
, text
, rio
, formatting
, attoparsec
, constraints
, fei-base >= 2.0.0
, fei-nn >= 2.0.0
, fei-einops >= 0.1.0
test-suite model-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: TestMain.hs
other-modules: TestLambdaLayer
build-depends: rio
, base
, tasty
, tasty-hunit
, tasty-discover
, fei-base >= 2.0.0
, fei-nn >= 2.0.0
, fei-modelzoo >= 2.0.0
default-language: Haskell2010