I'm learning to program in Go. I had some spare time today, so I wrote a toy neural network in it (overusing channels and goroutines along the way). Once I got started, it was surprisingly easy to get going.
The only difficulty I encountered were pointers. My background is in Ruby, which has no notion of pointers, and I have recently taught myself Rust, which uses &
and *
in a slightly different way than Go.
Tomorrow I plan to add a simple training process.
Feedback is more than welcome.
评论:
huydotnet:
Bookmarked. Will looking at it tonight. Sound interesting man!
Btw, the
sigmoid
need some test too :D
