Big datastructures in functional programming

Posted by Denis Gorodetskiy on Stack Overflow See other posts from Stack Overflow or by Denis Gorodetskiy
Published on 2010-05-22T03:00:03Z Indexed on 2010/05/22 3:10 UTC
Read the original article Hit count: 413

I'm newbie in Functional Programming.

I have a huge neural network with thousands of neurons and every connection between neurons has its weight. I have to update these weights very often, several thousand times per learning session.

Is FP still applicable here? I mean in fp we can't modify variables and only able to return new variables not changing previous values. Does this mean I have to recreate whole network on every weight update?

© Stack Overflow or respective owner

Related posts about functional-programming