-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-online-learning.asd
34 lines (32 loc) · 1.26 KB
/
cl-online-learning.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
;;; -*- coding:utf-8; mode: lisp; -*-
(in-package :cl-user)
(defpackage cl-online-learning-asd
(:use :cl :asdf))
(in-package :cl-online-learning-asd)
(defsystem cl-online-learning
:version "0.5"
:author "Satoshi Imai"
:licence "MIT Licence"
:encoding :utf-8
:depends-on (:cl-libsvm-format :cl-store)
:components ((:module "src"
:components
((:file "vector")
(:file "utils" :depends-on ("vector"))
(:file "cl-online-learning" :depends-on ("vector"))
(:file "rls" :depends-on ("vector" "cl-online-learning")))
))
:description "Online Machine Learning for Common Lisp"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.org"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op cl-online-learning-test))))