All Questions
Tagged with machine-learning lisp
3 questions
0
votes
1
answer
417
views
Reinforcement learning example (chap. 1) from Sutton's book
I ported the Lisp Tic Tac Toe code from Chapter 1. to Haskell. The original code repo is down for some reason.
I believe I have completely rewritten that in Haskell (Less functional than one would ...
6
votes
1
answer
1k
views
ANFIS network based on Sugeno model I
I've been learning Common Lisp lately and I've implemented ANFIS network based on Sugeno model I.
Network layout and details can be read in these slides by Adriano Oliveira Cruz.
I use sigmoid as the ...
13
votes
1
answer
2k
views
Clojure Neural Network
After reading this article about Neural Networks I was inspired to write my own implementation that allows for more than one hidden layer.
I am interested in how to make this code more idiomatic - ...