Search the Community
Showing results for tags 'binding'.
-
Hello guys, I'll have to use the Fast Neural Network (FANN) framework on my research to build a multilayer feedforward network with backpropagation error algorithm. I'm currently deciding if I use C or PHP and I would like your oppinion. The main reason I don't want to code it in C is because it will be a pain in the ass working with pointers, structures etc... in PHP everything would be much easier, and performance is not an issue. The only thing that gets me worried is how functional is FANN's PHP binding? Is it fully working? Is it up to date? Have all C function already been binded to PHP? If someone already used FANN's PHP binding, I would appreciate if you tell me your experience too. Thanks for your attention.
- 2 replies
-
- fann
- neural network
-
(and 1 more)
Tagged with:
-
Hello, I'm not sure if this is in the right area but if it's not please feel free to move it. I'm in the process of creating a game where a user from the users table will be allowed to create and select characters that are binded to that users profile. Allowing users to have up to two characters that can be selected to "Play As" after login in with the user account. My problem is since while I am not extremely new to php, this approach has me a bit stumped. How could I bind characters created by a userid to that userid? Is it something simple that I missed and just am over thinking? For example sake, we'll use 'users' table and 'characters' table. Any help or suggestions? Much appreciated!