DEV Community

Cover image for AI & Ruby: an introduction to neural networks

AI & Ruby: an introduction to neural networks

Leandro Proença on May 19, 2023

Currently we find ourselves in the middle of the hype surrounding Artificial Intelligence (AI) and all its buzzwords. It's natural to feel that ...
 
leandronsp profile image
Leandro Proença

thank! done

Collapse
 
collimarco profile image
Marco Colli

Thanks for this great article.

It was useful to recall many concepts from University.

Also I like that you are using Ruby!

PS: You should add a license (e.g. MIT) to your Git repo.

Collapse
 
leandronsp profile image
Leandro Proença

thanks Marco! I’m not expert in licensing, why do you think should MIT? Thanks for the feedback!

Collapse
 
pierre profile image
👨‍💻Pierre-Henry ✨

What a great read Leandro! Thank you for sharing 😊

Collapse
 
leandronsp profile image
Leandro Proença

Thanks for your feedback, Roman!

Collapse
 
Sloan, the sloth mascot
Comment deleted
Collapse
 
bialystok profile image
bialystok

thi is wrong input and output data
xor have 2 input value not 3?

ok:
inputs = [[0, 0], [0, 1], [1, 0], [1, 1]]
targets = [[0], [1], [1], [0]]