mathieulaporte / machine

Simple machine learning algorithm for crystal lang
MIT License
45 stars 5 forks source link

Usage Instructions #1

Open dillon-co opened 7 years ago

dillon-co commented 7 years ago

This is really cool!

Can you add some usage instructions for us mere mortals? :)

bararchy commented 7 years ago

@grandmasterspoc Guess project is dead ? :\

dillon-co commented 7 years ago

@bararchy Yeah looks like it, which is a bummer because I wanted to use it haha

bararchy commented 7 years ago

@grandmasterspoc @mathieulaporte . I'm trying to have some ANN in Crystal working at: https://github.com/bararchy/crystal-ann.

If @mathieulaporte isn't going to maintain this project (which is a shame :\ ) I will take the ANN from https://github.com/mathieulaporte/machine/blob/master/src/machine/neural_network/perceptron.cr or parts of it and will add to my project (both licensed under MIT and I'll give credits of curse) .

I would really love to know though if this is ok from @mathieulaporte point of view.

mathieulaporte commented 7 years ago

Hello guys sorry I do not see all notifications in the project (my bad).

I recently have done some work on the project, i will publish it soon (some refactor and new algo). I only can work on it some weekends...

Machine is just a simple project i work on for personal purpose (learning crystal and machine learning algorithm)

@bararchy This file https://github.com/mathieulaporte/machine/blob/master/src/machine/neural_network/perceptron.cr is basically a port from this one : https://github.com/SergioFierens/ai4r/blob/master/lib/ai4r/neural_network/backpropagation.rb It is named perceprton.cr but it is a backpropagation neural network. You should give all credit to SergioFierens. This file is going to be removed from the project (even from the history).

I will continue to maintain the project but I will focus on other kind of machine learning algorithm than NN. Bayesian network and decision tree for now ;-)

@grandmasterspoc let me know what you need (Any way I will provide basic examples on Bayesian network this weekend)

bararchy commented 7 years ago

@mathieulaporte Thanks for the info. I took the file to my repo, gave credit both to you and the original repo\owner.

I would really love an Bayes classifier to be available in Crystal, it would be awesome, I even wanted to start doing it by porting over classifier-reborn

dillon-co commented 7 years ago

@mathieulaporte Thanks! I was actually hoping for some instructions on the ANN. But I'm trying to learn how to write my own ML algorithms so I'll definitely be taking a look at the source :)