genann icon indicating copy to clipboard operation
genann copied to clipboard

simple neural network library in ANSI C

Results 12 genann issues
Sort by recently updated
recently updated
newest added

I wanted to have some mutated descendants of an ANN.

I was wondering how to change the default sigmoid activation function to something else. I've tried changing it to tanh and it's not working. I've also tried using the linear...

Hello, I started to implement the relu function for the genann library on a fork under my name (https://github.com/kasey-/genann) before sending you a PR: ``` double inline genann_act_relu(const struct genann...

I'm not skilled with machine learning and i'm trying to study its practical applications. I'm trying to use an ANN for non-linear regression of function sin(x) with analitical points and...

with a value of 300 in the training loop I see this output: Output for [0, 0] is 0. Output for [0, 1] is 1. Output for [1, 0] is...

`genann` is available as a port in [vcpkg](https://github.com/microsoft/vcpkg), a C++ library manager that simplifies installation for `genann` and other project dependencies. Documenting the install process here will help users get...

This simple change would half address issue #31 . It generalises the training procedure for the sigmoid to other invertible functions. It doesn't work for most non-invertible activation functions.[a] Those...

Hi, I want to change all data types from `double` to `int16_t`. In `genann.h` addition : `typedef int16_t ann_t;` Then change every occurrence of `double` to `ann_t`. Now modifying `example1.c`...

Forgive me for this very beginner question, but I noticed when reading about neural networks there are a lot of different training approaches and a lot of different signal activation...