Re: [Pharo-users] Neural Networks in Pharo

2017-04-29 Thread Oleks
And I have added a PolyMath dependency to the configuration file, so now the Metacello script should update you to the latest stable versions of everything automatically. Thanks for pointing it out. On Fri, Apr 28, 2017 at 11:05 PM, francescoagati [via Smalltalk] < ml+s1294792n4944863...@n4.nabble

Re: [Pharo-users] Neural Networks in Pharo

2017-04-28 Thread francesco agati
now work all good with last version of polymath thanks :-) 2017-04-27 17:29 GMT+02:00 Oleks : > Hello, > > I have finally added a configuration to the NeuralNetwork project. Now you > can use this Metacello script to load it into your Pharo image: > > Metacello new > repository: 'http://smallta

Re: [Pharo-users] Neural Networks in Pharo

2017-04-27 Thread Oleks
Hello, I have finally added a configuration to the NeuralNetwork project. Now you can use this Metacello script to load it into your Pharo image: Metacello new repository: 'http://smalltalkhub.com/mc/Oleks/NeuralNetwork/main'; configuration: 'MLNeuralNetwork'; version: #development; load.

Re: [Pharo-users] Neural Networks in Pharo

2017-04-25 Thread francesco agati
thanks ;-) 2017-04-25 15:09 GMT+02:00 Oleks : > Hello, > > There isn't one yet. But I will try to create it today. I will let you know > > Cheers, > Oleks > > On Apr 25, 2017 16:10, "francescoagati [via Smalltalk]" <[hidden email] > > wrote:

Re: [Pharo-users] Neural Networks in Pharo

2017-04-25 Thread Oleks
Hello, There isn't one yet. But I will try to create it today. I will let you know Cheers, Oleks On Apr 25, 2017 16:10, "francescoagati [via Smalltalk]" < ml+s1294792n494402...@n4.nabble.com> wrote: > Hi Oleks, > there is a mode for install neural network from metacello? > > 2017-04-25 13:00 GM

Re: [Pharo-users] Neural Networks in Pharo

2017-04-25 Thread francesco agati
Hi Oleks, there is a mode for install neural network from metacello? 2017-04-25 13:00 GMT+02:00 Alexandre Bergel : > Continue to push that topic Oleks. You are on the right track! > > Alexandre > > > On Apr 24, 2017, at 1:43 AM, Oleks wrote: > > > > Hello, > > > > Thanks a lot for your advice! I

Re: [Pharo-users] Neural Networks in Pharo

2017-04-25 Thread Alexandre Bergel
Continue to push that topic Oleks. You are on the right track! Alexandre > On Apr 24, 2017, at 1:43 AM, Oleks wrote: > > Hello, > > Thanks a lot for your advice! It was very helpful and educating (for > example, I thought that we store biases in the weight matrix and prepend 1 > to input to ma

Re: [Pharo-users] Neural Networks in Pharo

2017-04-23 Thread Oleks
Hello, Thanks a lot for your advice! It was very helpful and educating (for example, I thought that we store biases in the weight matrix and prepend 1 to input to make it faster, but now I see why it's actually slower that way). I've implemented a multi-layer neural network as a linked list of la

Re: [Pharo-users] Neural Networks in Pharo

2017-04-13 Thread Johann Hibschman
I definitely agree with this. Performance-wise, I expect it to be terrible to model each individual neuron as an object. The logical unit (IMHO) should be a layer of neurons, with matrix weights, vector biases, and vector output. Similarly, I think you'd be better off keeping the bias as a separat

Re: [Pharo-users] Neural Networks in Pharo

2017-04-12 Thread Ben Coman
On Wed, Apr 5, 2017 at 8:27 AM, Oleksandr Zaytsev wrote: > Hello! > > Several weeks ago I've announced my NeuralNetworks project. Thank you very > much for your ideas and feedback. As suggested, I wrote examples for every > class and tested my perceptron on linearly-separable logical functions. >

Re: [Pharo-users] Neural Networks in Pharo

2017-03-29 Thread Alidra Abdelghani via Pharo-users
--- Begin Message --- Hi Oleksandr, Since you are interested in the implementation aspect of neural networks, may be you should take a look on heuristiclab (http://dev.heuristiclab.com/trac.fcgi/wiki); a general framework for developing heuristic algorithms (not only neural networks, actually)

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Alexandre Bergel
Excellent Guillermo! I also wanted to play with the Mnist dataset. I will try your code Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On Mar 21, 2017, at 8:24 AM, Guillermo Polito > w

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Alexandre Bergel
Having a neuron as an object is exactly what I have in my implementation. Sounds exciting! Share your code when ready! Eager to try it! Alexandre -- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;. > On

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Offray Vladimir Luna Cárdenas
Nice to see this development. On the examples issues suggested by Alexandre, maybe Grafoscopio[1] could be useful to combine prose with code. I have write a new user manual [2] and I'm going to work on it this summer of code. [1] http://mutabit.com/grafoscopio/index.en.html [2] http://mutabit

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Serge Stinckwich
On Tue, Mar 21, 2017 at 2:38 PM, Alexandre Bergel wrote: > Hi Oleksandr! Hi all, > I had a look at your code a couple of weeks ago, as I also got some interest > in Neural networks and genetic algorithm (I will start a lecture here at my > university on this topic). This is great ! > I think t

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Alexandre Bergel
Hi Oleksandr! I had a look at your code a couple of weeks ago, as I also got some interest in Neural networks and genetic algorithm (I will start a lecture here at my university on this topic). I think that your code needs examples. Maybe you can add some simple examples, such as learning bool

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Guillermo Polito
Hi Oleksandr, I'm working half-time on a team doing simulations of spiking neural networks (on scala). Since the topic is "new" to me, I started following a MOOC on traditional machine learning and putting some of my code in here: https://github.com/guillep/neural-experiments Also, I wanted to e

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Oleksandr Zaytsev
I started by implementing some simple threshold neurons. The current goal is a multilayer perceptron (similar to the one in scikit-learn), and maybe other kinds of networks, such as self-organizing maps or radial basis networks. I could try to implement a deep learning algorithm, but the big issue

Re: [Pharo-users] Neural Networks in Pharo

2017-03-21 Thread Serge Stinckwich
On Tue, Mar 21, 2017 at 10:09 AM, Oleksandr Zaytsev wrote: > Hello. > > I'm implementing Neural Networks in Pharo as part of my thesis > (object-oriented approaches to neural networks implementation). It would be > really nice to receive some feedback. So if you have any ideas, > recommendations,