Rewrite of urnn in pure C - Programming On Unix

Users browsing this thread: 1 Guest(s)
pizzaroll1
Long time nixers
It's nothing specific, it's just that the FANN library, as of the latest version 2.2.0 at least, lets you create and manipulate training data structs directly, without any need to write any intermediate files to disk. All this string processing seems unnecessary when you already have the data in-memory, it's just that one needs to do a little fiddling around to hook it up to the neural network in the right way.

Also you can actually use int as fann_type, but I don't see a pressing need for it. The code might be cleaner I guess.


Messages In This Thread
Rewrite of urnn in pure C - by pizzaroll1 - 06-09-2017, 11:51 AM
RE: Rewrite of urnn in pure C - by venam - 06-09-2017, 12:45 PM
RE: Rewrite of urnn in pure C - by pizzaroll1 - 06-09-2017, 01:20 PM