clml icon indicating copy to clipboard operation
clml copied to clipboard

Common Lisp Machine Learning Library

Results 8 clml issues
Sort by recently updated
recently updated
newest added

https://github.com/mmaul/clml/blob/c34cc7a7c041d3f99e5d3bc5b4abf5caaedfd1dd/som/src/fileio.lisp#L6 The way this is defined now, the optimization applies during compilation, and after loading it applies to everything that is compiled afterwards in the same process. Presumably, it is...

I'm taking a look at CLML for the first time. It looks really extensive! The first routines I've looked at have scared me a bit though by using (DECLARE (OPTIMIZE...

Building with SBCL 2.1.6 / ASDF 3.3.1 for quicklisp dist creation. Trying to build commit id c1c2fa9ded5eac334ab5a49afddb4117b583f1eb *clml.docs* fails to build because of a failure in _clml.time-series_. *clml.graph* fails to...

The latest SBCL checks (to some degree) that the object in `:initform` matches the `:type` option. This causes some build failures in CLML. Logs are here: http://report.quicklisp.org/2020-09-29/failure-report/clml.html

in https://github.com/mmaul/clml#requirements > Note: Default heapsize should be around 2560K (On some systems it may need to be greater) for SBCL this can be done by set with the switch...

Is it? numcl is a thing now, so maybe that would be useful.

in som/examples/test.lisp, **test**: 1) The argument **filename** default to a relative pathname, which works only if the current directory happens to be the right one. It needs to use **asdf:system-relative-pathname**...

I've encountered the following issue: ```lisp (clml.statistics:quantile (clml.statistics:beta-distribution 0.01 0.01) 0.23) ``` aborts after second iteration of `#'newton-raphson` through an assertion in `#'regularized-incomplete-beta` (see trace below). However, the same parameters...