clj-bigml

2017-03-07 Thread Myriam Abramson
Is this project still maintained? Does anyone want to fork it to bring it up-to-date? Thanks for any info. -- myriam -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: Incanter 1.9 and Clojure 1.7

2016-04-25 Thread myriam abramson
ht sort a > number of issues. > > If yours isn't sorted then I might look at it as we use PCA a fair bit too. > > Do you have a small example of some code that is failing? > > cheers, > Bruce > > On Wed, Apr 20, 2016 at 3:19 PM, myriam abramson <labwor...@gmail.com> >

Re: Incanter 1.9 and Clojure 1.7

2016-04-21 Thread myriam abramson
APSHOT release out that might sort a > number of issues. > > If yours isn't sorted then I might look at it as we use PCA a fair bit too. > > Do you have a small example of some code that is failing? > > cheers, > Bruce > > On Wed, Apr 20, 2016 at 3:19 PM, myriam abramson

Incanter 1.9 and Clojure 1.7

2016-04-20 Thread myriam abramson
I am getting the following error with Incanter 1.9 running the PCA example from the documentation: CompilerException java.lang.ClassCastException: java.lang.Boolean cannot be cast to java.lang.Number, compiling:(pca.clj:17:10) That works fine with Clojure 1.6. (and yes, I know that the latest is

Re: Pmap on hash maps

2016-04-18 Thread myriam abramson
I like pmap too. I've set the number of processors call with a defonce to minimize the calls to this function to speed up pmap. What do ya think? (defn rt-num-processors [] (.availableProcessors (Runtime/getRuntime))) (defonce num-processors (rt-num-processors)) On Mon, Apr 18, 2016 at 1:31

Re: Clojure community organisation

2015-05-03 Thread myriam abramson
I did ask Peter Norvig to show support for Clojure with simple programs like he did with his Python spellchecker. He could even use Clojure for a new edition of AIMA. But I am not sure he is going to do that. On Sun, May 3, 2015 at 7:29 PM, Tom Marble tmar...@gmail.com wrote: @deepbluelambda:

Re: Clojure/conj Speakers and Opportunity Grants

2014-09-10 Thread myriam abramson
Will the videos be uploaded somewhere? On Tue, Sep 9, 2014 at 5:02 PM, Alex Miller a...@puredanger.com wrote: *Clojure/conj - Nov 20-22, 2014* Warner Theater - Washington, DC http://clojure-conj.org/ Tickets https://www.eventbrite.com/e/clojureconj-2014-tickets-12388174363: $350 Training

Re: Need some Advice for my Prolog Project

2013-05-15 Thread myriam abramson
Good idea! But I would build it on top of Clojure. Maybe something like Norvig did in his Paradigms book. Of course, it depends on how ambitious you want to be. On Wed, May 15, 2013 at 12:17 PM, Charles Hoskinson charles.hoskin...@gmail.com wrote: I'm starting an open sourced project to port

PPAML

2013-04-10 Thread Myriam Abramson
http://www.darpa.mil/Our_Work/I2O/Programs/Probabilistic_Programming_for_Advanced_Machine_Learning_%28PPAML%29.aspx I just went to the Proposer's day for this program this morning. It's more a programming language program than a machine learning program. They are interested in a probabilistic

Fitting data to distributions with Incanter

2012-08-13 Thread myriam abramson
Sorry, for posting here. I am not sure if the Incanter mailing list is active nowadays and I need an answer to this question soon. Is there an easy way to fit data to distributions with Incanter similar to fitdistr in R? TIA -- You received this message because you are subscribed to the Google

Re: community interest in machine learning (?)

2012-07-17 Thread myriam abramson
Yes, I am interested too. All I have done is an implementation of HMM and I am looking to use clj-ml to interface with Weka. -- 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

Re: Explaining the thrush - operator.

2012-06-09 Thread myriam abramson
This is all very nice but it seems to me to be a case of less is more (or more is less). I mean, if I am used to read inside out easily, this operator just makes my life harder. I don't plan to use it but unfortunately to understand other people's code, I have to switch mindset. On Sat, Jun 9,

Viterbi

2012-04-04 Thread myriam abramson
Hello, I was wondering if you could give me some advice on my Viterbi algorithm in clojure posted at git://gist.github.com/2301728.git. I am a complete novice at Clojure. Hopefully, we could include it as an implementation on the Wikipedia page for the Viterbi algorithm. TIA, melipone -- You

Re: Help! Migrating to 1.3.0

2012-01-14 Thread myriam abramson
I couldn't find quite the equivalent to read-lines from duck-streams. I found read-line but it's not the same. Where is the equivalent read-lines outside of clojure.contrib? On Fri, Jan 13, 2012 at 9:51 PM, Stephen Compall s...@member.fsf.org wrote: On Fri, Jan 13, 2012 at 11:47 AM,

Re: Adding a jar to dependencies in lein

2011-11-12 Thread myriam abramson
Thanks, I didn't know about that. On Fri, Nov 11, 2011 at 4:47 PM, joegallo joega...@gmail.com wrote: Go to search.maven.org, and type in jericho-html. That'll take you to some results pages that will tell you the versions that are available, and also the correct groupId and artifactId.

Adding a jar to dependencies in lein

2011-11-11 Thread myriam abramson
I want to interface with the Jericho html-parser available from sourceforge. How do I specify it in project.clj for lein to fetch? -- 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

Re: clojure and emacs

2011-09-06 Thread myriam abramson
download the same version as swank-clojure, that is, 20100404, then it works. On Sun, Sep 4, 2011 at 8:19 AM, myriam abramson labwor...@gmail.comwrote: Thanks. I am getting some slime errors unfortunately. I'll have to track that down. On Thu, Sep 1, 2011 at 1:36 PM, Paul Nakata paulnak

Re: Stanford AI Class

2011-09-03 Thread myriam abramson
Good news! The FAQ mentions that any programming language will do. On Mon, Aug 8, 2011 at 2:47 PM, labwor...@gmail.com wrote: As most of you probably already know, Peter Norvig and S. Thrun will offer a free online intro to AI class in the Fall. The problem is that it will probably require

Re: Stanford AI Class

2011-08-13 Thread Myriam Abramson
I'm just concerned that teaching AI to 25K+ students is going to have an impact and it shouldn't be because P. Norvig didn't publish the next edition of AIMA. I wish they would realize that and change their mind on the assignments for the class. Even Javascript is more suitable for AI than Python!

Re: Parsing HTML in clojure

2011-06-05 Thread Myriam Abramson
Me too, starting in October. I still need to get up to speed with Clojure however. On Sun, Jun 5, 2011 at 11:04 PM, Andreas Kostler andreas.koestler.le...@gmail.com wrote: There's a Java library called HtmlCleaner. You might wanna give that a shot. Btw, I'm working on quite a similar project

Re: HPC in scala ..

2011-01-18 Thread Myriam Abramson
Hi Chad! Where are you at NRL? I'm also working there. I was dreaming of having a clojure users group there. -- myriam cej38 junkerme...@gmail.com writes: I am currently at the Naval Research Laboratory, Washington DC. Chad On Jan 18, 11:59 am,

Re: CL libraries - Newbie question

2009-05-10 Thread Myriam Abramson
David Nolen dnolen.li...@gmail.com writes: Not unless you port it ;) Is there something to do that easily? After all the syntax is not that much different and that's what lisp do well. On May 8, 7:17 pm, André Thieme splendidl...@googlemail.com wrote: In principle you could run Clojure