forked from masatoi/cl-random-forest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cl-random-forest.asd
32 lines (30 loc) · 1.29 KB
/
cl-random-forest.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
;;; -*- coding:utf-8; mode:lisp -*-
(in-package :cl-user)
(defpackage cl-random-forest-asd
(:use :cl :asdf))
(in-package :cl-random-forest-asd)
(defsystem cl-random-forest
:version "0.1"
:author "Satoshi Imai"
:license "MIT Licence"
:depends-on (:cl-libsvm-format :cl-online-learning :alexandria :lparallel :lfarm-server :lfarm-client)
:components ((:module "src"
:components
((:file "utils")
(:file "random-forest" :depends-on ("utils"))
(:file "reconstruction" :depends-on ("random-forest"))
(:file "feature-importance" :depends-on ("random-forest")))))
:description "Random Forest and Global Refinement 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-random-forest-test))))