-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmlep.asd
52 lines (48 loc) · 2.1 KB
/
mlep.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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defpackage :mlep-asd
(:use :cl :asdf))
(in-package :mlep-asd)
(defsystem :mlep
:name "mlep"
:version "0.0.1"
:maintainer "Frank Zalkow <[email protected]>"
:author "Frank Zalkow <[email protected]>"
:licence "MIT License <http://opensource.org/licenses/MIT>"
:description
"A Common Lisp machine learning library for educational purposes."
:long-description
"mlep is a Machine Learning library for Educational Purposes.
It aims at providing a collection of simple machine learning algorithms with the
following claims:
* to be implementation independent
* to be fairly easy to use so that even intermediate Common Lisp programmers should
be able to use this library instantly without pain
* to provide a tutorial-style documentation so that one should get to know this
library easily"
:serial t
:pathname #P"src/"
:components ((:file "package")
(:module "macros"
:components ((:file "macros")))
(:module "datasets"
:components ((:file "iris")
(:file "heights-weights")
(:file "lenses")
(:file "wages")))
(:module "utils"
:components ((:file "number-utils")
(:file "list-utils")
(:file "array-utils")
(:file "constants")
(:file "functions")
(:file "plot")))
(:module "core"
:components ((:file "generic")
(:file "k-means")
(:file "k-nearest")
(:file "markov-chain")
(:file "naive-bayes")
(:file "perceptron")
(:file "likelihood")
(:file "neuronal")
(:file "imputer")))))