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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
;;; LIBSVM interface
;;; <http://www.csie.ntu.edu.tw/~cjlin/libsvm/>
;;;
;;; Copyright (C) 2006 by Sam Steingold
;;; This is Free Software, covered by the GNU GPL (v2)
;;; See http://www.gnu.org/copyleft/gpl.html
(defpackage "LIBSVM"
(:modern t) (:use "CL" "FFI")
(:shadowing-import-from "EXPORTING" #:def-c-enum #:def-c-struct
#:def-call-out #:def-c-type #:defun))
(in-package "LIBSVM")
(setf (documentation (find-package "LIBSVM") 'sys::impnotes) "libsvm")
(default-foreign-language :stdc)
(default-foreign-library (namestring (merge-pathnames "svm.so" *load-pathname*)))
;;;
;;; types and constants
;;;
(def-c-type node (c-struct list (index int) (value double-float)))
(def-c-type problem (c-struct list
(l int) ; number of records
(y (c-array-ptr double-float)) ; of length l (targets)
(x (c-array-ptr (c-array-ptr node))))); of length l (predictors)
;; converting a `problem' object from Lisp to C is easy, see `make-problem'
;; converting a `problem' object from C to Lisp is tricky because
;; a 0d0 in the `y' array is interpreted as the end of the array.
;; thus we have to resort to a roundabout way:
;; - convert `c-array-ptr' to a `c-pointer'
;; - find out the array length
;; - convert `c-pointer' to `c-array' with the known length
(defun problem-l (problem) (slot (foreign-value problem) 'l))
;; FIXME: `parse-c-type' is not optimized away in `(c-ptr ...)
(defun problem-y (problem &optional (len (problem-l problem)))
(with-c-place (p problem)
(cast (slot p 'y) `(c-ptr (c-array double-float ,len)))))
(defun problem-x (problem &optional (len (problem-l problem)))
(with-c-place (p problem)
(cast (slot p 'x) `(c-ptr (c-array (c-array-ptr node) ,len)))))
;; access the n-th element
(defun problem-y-n (problem n &optional (len (problem-l problem)))
(with-c-place (p problem)
(element (deref (cast (slot p 'y) `(c-ptr (c-array double-float ,len))))
n)))
(defun problem-x-n (problem n &optional (len (problem-l problem)))
(with-c-place (p problem)
(element (deref (cast (slot p 'x)
`(c-ptr (c-array (c-array-ptr node) ,len))))
n)))
(def-c-enum svm_type C_SVC NU_SVC ONE_CLASS EPSILON_SVR NU_SVR)
(def-c-enum kernel_type LINEAR POLY RBF SIGMOID PRECOMPUTED)
(def-c-type parameter (c-struct vector
(svm_type int)
(kernel_type int)
(degree int) ; for poly
(gamma double-float) ; for poly/rbf/sigmoid
(coef0 double-float) ; for poly/sigmoid
;; these are for training only
(cache_size double-float) ; in MB
(eps double-float) ; stopping criteria
(C double-float) ; for C_SVC, EPSILON_SVR and NU_SVR
(nr_weight int) ; for C_SVC
(weight_label (c-array-ptr int)) ; for C_SVC
(weight (c-array-ptr double-float)) ; for C_SVC
(nu double-float) ; for NU_SVC, ONE_CLASS, and NU_SVR
(p double-float) ; for EPSILON_SVR
(shrinking int) ; use the shrinking heuristics
(probability int))) ; do probability estimates
(def-c-type model c-pointer)
;;;
;;; foreign functions and small wrappers
;;;
(ffi:def-call-out svm_destroy_model
(:arguments (model model)) (:return-type nil))
(defun destroy-model (model)
(when (validp model)
(svm_destroy_model model)
(setf (validp model) nil)))
(cl:defun finalize-model (model)
(ext:finalize (set-foreign-pointer model :copy) #'destroy-model)
model)
(def-call-out check-parameter (:name "svm_check_parameter")
(:arguments (problem (c-pointer problem)) (param (c-pointer parameter)))
(:return-type c-string))
(ffi:def-call-out svm_train
(:arguments (problem (c-pointer problem)) (param (c-pointer parameter)))
(:return-type model))
(defun train (problem parameter)
(let ((check (check-parameter problem parameter)))
(if check (error "~S: ~A" 'train check)
(finalize-model (svm_train problem parameter)))))
(ffi:def-call-out svm_cross_validation
(:arguments (problem (c-pointer problem)) (parameter (c-pointer parameter))
(nr_fold int) (target c-pointer))
(:return-type nil))
(defun cross-validation (problem parameter nr_fold)
(let ((check (check-parameter problem parameter)))
(if check (error "~S: ~A" 'cross-validation check)
(with-foreign-object (target `(c-array double-float
,(problem-l problem)))
(svm_cross_validation problem parameter nr_fold target)
(foreign-value target)))))
(def-call-out save-model (:name "svm_save_model")
(:arguments (model_file_name c-string) (model model))
(:return-type int))
(ffi:def-call-out svm_load_model (:arguments (model_file_name c-string))
(:return-type model))
(defun load-model (model_file_name)
(finalize-model (svm_load_model model_file_name)))
(def-call-out get-svm-type (:name "svm_get_svm_type")
(:arguments (model model))
(:return-type int))
(def-call-out get-nr-class (:name "svm_get_nr_class")
(:arguments (model model))
(:return-type int))
(ffi:def-call-out svm_get_labels (:arguments (model model) (label c-pointer))
(:return-type nil))
(defun get-labels (model)
(with-foreign-object (label `(c-array int ,(get-nr-class model)))
(svm_get_labels model label)
(foreign-value label)))
(def-call-out get-svr-probability (:name "svm_get_svr_probability")
(:arguments (model model))
(:return-type double-float))
(ffi:def-call-out svm_predict_values1 (:name "svm_predict_values")
(:arguments (model model) (x (c-array-ptr node))
(dec_values (c-ptr double-float) :out))
(:return-type nil))
(ffi:def-call-out svm_predict_values2 (:name "svm_predict_values")
(:arguments (model model) (x (c-array-ptr node))
(dec_values c-pointer))
(:return-type nil))
(defun predict-values (model x)
(case (get-svm-type model)
((ONE_CLASS EPSILON_SVR NU_SVR)
(vector (svm_predict_values1 model x)))
(t (let* ((nr-class (get-nr-class model))
(len (/ (* nr-class (1- nr-class)) 2)))
(with-foreign-object (dec-values `(c-array double-float ,len))
(svm_predict_values2 model x dec-values)
(foreign-value dec-values))))))
(def-call-out predict (:name "svm_predict")
(:arguments (model model) (x (c-array-ptr node)))
(:return-type double-float))
(ffi:def-call-out svm_predict_probability
(:arguments (model model) (x (c-array-ptr node))
(prob_estimates c-pointer))
(:return-type double-float))
(defun predict-probability (model x)
(with-foreign-object
(prob_estimates `(c-array double-float ,(get-nr-class model)))
(values (svm_predict_probability model x prob_estimates)
(foreign-value prob_estimates))))
;; not needed!
;; (def-call-out destroy-param (:name "svm_destroy_param")
;; (:arguments (param (c-pointer parameter))) (:return-type nil))
(def-call-out check-probability-model (:name "svm_check_probability_model")
(:arguments (model model))
(:return-type int))
;;;
;;; high-level helpers
;;;
(defun destroy-parameter (parameter)
(when (validp parameter)
;; (destroy-param parameter) -- not needed!
(foreign-free parameter :full t)
(setf (validp parameter) nil)))
;; the defaults are the same as those in svm_train (see README)
(defun make-parameter (&key (v #() v-p)
((svm_type svm_type) (if v-p (svref v 0) C_SVC))
((kernel_type kernel_type) (if v-p (svref v 1) RBF))
((degree degree) (if v-p (svref v 2) 3))
((gamma gamma) (if v-p (svref v 3) 0d0)) ; 1/maxindex
((coef0 coef0) (if v-p (svref v 4) 0d0))
((cache_size cache_size) (if v-p (svref v 5) 1d2))
((eps eps) (if v-p (svref v 6) 1d-3))
((C C) (if v-p (svref v 7) 1d0))
((nr_weight nr_weight) (if v-p (svref v 8) 0))
((weight_label weight_label) (if v-p (svref v 9) #()))
((weight weight) (if v-p (svref v 10) #()))
((nu nu) (if v-p (svref v 11) 5d-1))
((p p) (if v-p (svref v 12) 1d-1))
((shrinking shrinking) (if v-p (svref v 13) 1))
((probability probability) (if v-p (svref v 14) 0)))
"Allocate a `parameter' object.
You do NOT have to call (destroy-parameter ret) yourself!"
(assert (= nr_weight (length weight_label)) (nr_weight weight_label)
"~S: nr_weight=~:D /= ~:D=(length weight_label)"
'make-parameter nr_weight (length weight_label))
(assert (= nr_weight (length weight)) (nr_weight weight)
"~S: nr_weight=~:D /= ~:D=(length weight)"
'make-parameter nr_weight (length weight))
(let ((ret (allocate-deep 'parameter
(vector svm_type kernel_type degree
gamma coef0 cache_size eps C
nr_weight weight_label weight
nu p shrinking probability))))
(ext:finalize ret #'destroy-parameter)
ret))
(defun parameter-alist (parameter)
(mapcar (lambda (slot) (list slot (slot (foreign-value parameter) slot)))
'(svm_type kernel_type degree
gamma coef0 cache_size eps C
nr_weight weight_label weight
nu p shrinking probability)))
(defun make-problem (&key (l 0) y x)
"Create a `problem' object with the specified slots.
You must call (destroy-problem ret) yourself!
-- but remember that `model' returned by `train' uses `problem',
so you cannot free `problem' until you free all `model's"
(assert (= l (length y)) (l y)
"~S: l=~:D /= ~:D=(length y)" 'make-problem l (length y))
(assert (= l (length x)) (l x)
"~S: l=~:D /= ~:D=(length x)" 'make-problem l (length x))
(allocate-deep 'problem (list l (coerce y 'vector) (coerce x 'vector))))
(defun destroy-problem (problem)
(when (validp problem)
(foreign-free problem :full t)
(setf (validp problem) nil)))
(defun load-problem (file &key (log *standard-output*))
"Load the `problem' object from a standard libsvm/svmlight problem file:
target index1:value1 index2:value2 ..."
(let ((len 0) y x (maxindex 0)
(*read-default-float-format* 'double-float))
(with-open-file (in file)
(sys::start-message log 'load-problem file (file-length in))
(loop :for line = (read-line in nil nil) :while line
:unless (or (zerop (length line)) (char= #\# (aref line 0))) :do
(incf len)
(multiple-value-bind (target pos) (read-from-string line)
(push (coerce target 'double-float) y)
(push
(let ((ret ()))
(loop :with index :and value
:for colon = (position #\: line :start pos) :while colon :do
(multiple-value-setq (index pos)
(parse-integer line :start pos :end colon))
(multiple-value-setq (value pos)
(read-from-string line t nil :start (1+ colon)))
(setq maxindex (max maxindex index))
(push (list (coerce index 'integer)
(coerce value 'double-float))
ret))
(coerce (nreverse (cons (list -1 0d0) ret)) 'vector))
x)))
(when log (format log "~:D record~:P~%" len)))
(values (make-problem :l len :y (nreverse y) :x (nreverse x))
maxindex)))
(defun save-problem (file problem &key (log *standard-output*))
"Write the `problem' object into a standard libsvm/svmlight problem file:
target index1:value1 index2:value2 ..."
(with-open-file (out file :direction :output)
(let* ((size (problem-l problem))
(y (problem-y problem size)) (x (problem-x problem size)))
(sys::start-message log 'save-problem file size "records")
(dotimes (i size)
(format out "~G" (aref y i))
(let ((nodes (aref x i)))
(loop :for (index value) :across nodes :while (/= index -1) :do
(format out " ~D:~G" index value)))
(terpri out)))
(when log (format log "~:D byte~:P~%" (file-length out)))))
(pushnew :libsvm *features*)
(provide "libsvm")
(pushnew "LIBSVM" custom:*system-package-list* :test #'string=)
|