Re: [Pharo-users] Machine Learning in Pharo

2017-04-13 Thread frankl1_miky
Sure I would like Le 13 avr. 2017 11:26 AM, "Stephane Ducasse-3 [via Smalltalk]" < ml-node+s1294792n4941957...@n4.nabble.com> a écrit : > You have polymath. > Now I would like to code the code of the book collective intelligence if > you want to have a look. > > Stef > > On Thu, Apr 13, 2017 at

Re: [Pharo-users] Machine Learning in Pharo

2017-04-13 Thread frankl1_miky
Sure, I would like Le 13 avr. 2017 11:33 AM, "SergeStinckwich [via Smalltalk]" < ml-node+s1294792n4941958...@n4.nabble.com> a écrit : > We have nothing at the moment at the level of Scikit-learn: > http://scikit-learn.org/stable/ > > but we have existing code in PolyMath: https://github.com/ >

Re: [Pharo-users] Machine Learning in Pharo

2017-04-13 Thread Serge Stinckwich
We have nothing at the moment at the level of Scikit-learn: http://scikit-learn.org/stable/ but we have existing code in PolyMath: https://github.com/PolyMathOrg/PolyMath Oleksandr talk about Machine Learning and Pharo recently:

Re: [Pharo-users] Machine Learning in Pharo

2017-04-13 Thread Stephane Ducasse
You have polymath. Now I would like to code the code of the book collective intelligence if you want to have a look. Stef On Thu, Apr 13, 2017 at 6:44 AM, frankl1_miky wrote: > Hello everyone, > > I would like to experiment machine learning in Pharo. > > Is there

[Pharo-users] Machine Learning in Pharo

2017-04-12 Thread frankl1_miky
Hello everyone, I would like to experiment machine learning in Pharo. Is there any library out there for that purpose ? Thanks ! -- View this message in context: http://forum.world.st/Machine-Learning-in-Pharo-tp4941934.html Sent from the Pharo Smalltalk Users mailing list archive at

Re: [Pharo-users] Machine learning in Pharo

2016-05-01 Thread stepharo
You have also Natural Smalltalk from hernan. It sounds like a good basis. Stef Le 1/5/16 à 18:50, Evan Donahue a écrit : Hello, I added a "MachineLearning" repository to Smalltalkhub a while back, but I got sidetracked before adding anything beyond a naive KNN classifier, which was

Re: [Pharo-users] Machine learning in Pharo

2016-05-01 Thread stepharo
for NLP Olivier started to work on Phonetix Now there is https://github.com/mark-watson/nlp_smalltalk But the lince is GPL3.0 and it looks simple... not sure it is worth to polute your life with such license. Stef Le 1/5/16 à 18:50, Evan Donahue a écrit : Hello, I added a

Re: [Pharo-users] Machine learning in Pharo

2016-05-01 Thread Alexandre Bergel
Hi Even, let us know! This is highly exciting! Alexandre > On May 1, 2016, at 1:50 PM, Evan Donahue wrote: > > Hello, > > I added a "MachineLearning" repository to Smalltalkhub a while back, but I > got sidetracked before adding anything beyond a naive KNN classifier,

Re: [Pharo-users] Machine learning in Pharo

2016-05-01 Thread Evan Donahue
Hello, I added a "MachineLearning" repository to Smalltalkhub a while back, but I got sidetracked before adding anything beyond a naive KNN classifier, which was really just to help prototype the testing framework. That said, my plans involve expanding the library extensively this summer in

Re: [Pharo-users] Machine learning in Pharo

2016-04-30 Thread stepharo
I know that in VW we developed LSI (stemers and probably others) but I'm not sure that this is what you need. Are there any ML libraries in Pharo? I want to build a document classifier for the contents of an RSS feed. I was hoping to try this in Pharo. Cheers Andy

[Pharo-users] Machine learning in Pharo

2016-04-30 Thread Andy Burnett
Are there any ML libraries in Pharo? I want to build a document classifier for the contents of an RSS feed. I was hoping to try this in Pharo. Cheers Andy

Re: [Pharo-users] Machine Learning in Pharo

2015-12-16 Thread Serge Stinckwich
Yes you can just here: https://groups.google.com/forum/#!forum/scismalltalk Regards, On Sun, Dec 13, 2015 at 10:15 PM, stepharo wrote: > Check the sciSmalltalk mailing-list. > and the Numerical book > > Stef > > Le 13/12/15 21:02, Evan Donahue a écrit : > >> I saw a post on

[Pharo-users] Machine Learning in Pharo

2015-12-13 Thread Evan Donahue
I saw a post on pharo-dev a little while ago about adding some machine learning libraries to pharo, and I was just wondering if there have been any developments on that front. I'm about to do some machine learning work myself, so it might make sense to coordinate with anyone out there already

Re: [Pharo-users] Machine Learning in Pharo

2015-12-13 Thread stepharo
Check the sciSmalltalk mailing-list. and the Numerical book Stef Le 13/12/15 21:02, Evan Donahue a écrit : I saw a post on pharo-dev a little while ago about adding some machine learning libraries to pharo, and I was just wondering if there have been any developments on that front. I'm about

Re: [Pharo-users] Machine learning in Pharo?

2014-09-29 Thread Martin Dias
Thanks Hernán! On Thu, Sep 25, 2014 at 8:59 PM, Hernán Morales Durand hernan.mora...@gmail.com wrote: In BioSmalltalk you can do something like this: | cluster classifier trainedData observations| cluster := BioGroupOrganization forSimilarityOn: #value. trainedData := { 'Polaromonas

[Pharo-users] Machine learning in Pharo?

2014-09-25 Thread Martin Dias
Hi all, I'm playing with weka [1] for classifying data using data mining/machine learning. I'm really new on this field so I want to give you a concrete example of my use case to make it clear: I have elements that can be classified as true or false. In a training phase, I set up a bayesian

Re: [Pharo-users] Machine learning in Pharo?

2014-09-25 Thread Hernán Morales Durand
In BioSmalltalk you can do something like this: | cluster classifier trainedData observations| cluster := BioGroupOrganization forSimilarityOn: #value. trainedData := { 'Polaromonas naphthalenivorans CJ2' . 'Polaromonas sp. JS666' . 'Planctomyces limnophilus DSM 3776' .