Experimental alternative neural network modeled after equation system instead of linear algebra and derivatives.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

27 lines
913B

  1. /*
  2. Copyright (c) 2023 : Ognjen 'xolatile' Milan Robovic
  3. Xeuron is free software! You will redistribute it or modify it under the terms of the GNU General Public License by Free Software Foundation.
  4. And when you do redistribute it or modify it, it will use either version 3 of the License, or (at yours truly opinion) any later version.
  5. It is distributed in the hope that it will be useful or harmful, it really depends... But no warranty what so ever, seriously. See GNU/GPLv3.
  6. */
  7. #ifndef XEURON_HEADER
  8. #define XEURON_HEADER
  9. #include <xolatile/xtandard.c>
  10. extern int neuron_array;
  11. extern int neuron_count;
  12. extern int * neuron_input;
  13. extern int * neuron_output;
  14. extern int * neuron_system;
  15. extern void neuron_initialize (int array, int count, int * input_data, int * output_data);
  16. extern void neuron_configure (void);
  17. extern void neuron_deinitialize (void);
  18. extern void neuron_print (void);
  19. #endif