[ANN] sampling - A Clojure library for random sampling

2013-01-22 Thread Adam Ashenfelter
BigML is happy to open source our Clojure random sampling library . The library offers: - Three varieties of sampling depending on your memory requirements (simple sampling, reservoir sampling, stream sampling) - Sample with r

[ANN] clj-bigml - Clojure bindings for BigML's machine learning API

2013-01-17 Thread Adam Ashenfelter
clj-bigml is a Clojure library for interacting with BigML's machine learning API . As of now, BigML offers decision tree models (and their ensembles like random decision forests) for supervised learning. Wi

Re: clojure.contrib.priority-map issue

2011-05-21 Thread Adam Ashenfelter
Great - and many thanks for the nice data structure! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post

clojure.contrib.priority-map issue

2011-05-20 Thread Adam Ashenfelter
I've been using priority-map from clojure-contrib: https://github.com/clojure/clojure-contrib/blob/master/modules/priority-map/src/main/clojure/clojure/contrib/priority_map.clj Peek and pop don't work as I expected after doing a dissoc for an object not contained in the map. I'm pretty new to C