-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmgl.asd
72 lines (70 loc) · 3.21 KB
/
mgl.asd
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
;;;; -*- mode: Lisp -*-
;;; See MGL::@MGL-MANUAL for the user guide.
(asdf:defsystem #:mgl
:licence "MIT, see COPYING."
:version "0.1.0"
:name "MGL, the machine learning library"
:author "Gábor Melis <[email protected]>"
:mailto "[email protected]"
:homepage "http://melisgl.github.io/mgl"
:bug-tracker "https://github.com/melisgl/mgl/issues"
:source-control (:git "https://github.com/melisgl/mgl.git")
:description "MGL is a machine learning library for backpropagation
neural networks, boltzmann machines, gaussian processes and more."
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "common")
(:file "resample")
(:file "util")
(:file "log")
(:file "dataset")
(:file "copy")
(:file "core")
(:file "feature")
(:file "monitor")
(:file "counter")
(:file "measure")
(:file "classification")
(:file "optimize")
(:file "gradient-descent")
(:file "conjugate-gradient")
(:file "differentiable-function")
(:file "boltzmann-machine")
(:file "deep-belief-network")
(:file "backprop")
(:file "lumps")
(:file "unroll")
(:file "gaussian-process")
(:file "nlp")
(:file "mgl")
(:file "doc"))))
:depends-on (#:alexandria #:closer-mop #:array-operations #:lla #:cl-reexport
#:mgl-gnuplot #:mgl-mat #:mgl-pax #:num-utils #:named-readtables
#:pythonic-string-reader #:swank)
:in-order-to ((asdf:test-op (asdf:test-op "mgl/test"))))
(asdf:defsystem #:mgl/test
:licence "MIT, see COPYING."
:author "Gábor Melis <[email protected]>"
:mailto "[email protected]"
:description "Test system for MGL-GPR."
:depends-on (#:mgl #:mgl-mat/test)
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "util")
(:file "test-resample")
(:file "test-util")
(:file "test-copy")
(:file "test-classification")
(:file "test-confusion-matrix")
(:file "test-conjugate-gradient")
(:file "test-boltzmann-machine")
(:file "test-backprop")
(:file "test-rnn")
(:file "test-unroll")
(:file "test-gaussian-process")
(:file "test-nlp")
(:file "test"))))
:perform (asdf:test-op (o s)
(uiop:symbol-call '#:mgl-test '#:test)))