Zurück zum Ranking

glouw/tinn

C

A tiny neural network library

tinyneuralnetworkansicfeedforwardbackpropagation
Sterne-Wachstum
Sterne
2.1k
Forks
188
Wochenwachstum
Issues
9
1k2k
März 2018Dez. 2020Okt. 2023Juli 2026
README

Tinn (Tiny Neural Network) is a 200 line dependency free neural network library written in C99.

For a demo on how to learn hand written digits, get some training data:

wget http://archive.ics.uci.edu/ml/machine-learning-databases/semeion/semeion.data

make; ./test

The training data consists of hand written digits written both slowly and quickly. Each line in the data set corresponds to one handwritten digit. Each digit is 16x16 pixels in size giving 256 inputs to the neural network.

At the end of the line 10 digits signify the hand written digit:

0: 1 0 0 0 0 0 0 0 0 0
1: 0 1 0 0 0 0 0 0 0 0
2: 0 0 1 0 0 0 0 0 0 0
3: 0 0 0 1 0 0 0 0 0 0
4: 0 0 0 0 1 0 0 0 0 0
...
9: 0 0 0 0 0 0 0 0 0 1

This gives 10 outputs to the neural network. The test program will output the accuracy for each digit. Expect above 99% accuracy for the correct digit, and less that 0.1% accuracy for the other digits.

Features

  • Portable - Runs where a C99 or C++98 compiler is present.

  • Sigmoidal activation.

  • One hidden layer.

Tips

  • Tinn will never use more than the C standard library.

  • Tinn is great for embedded systems. Train a model on your powerful desktop and load it onto a microcontroller and use the analog to digital converter to predict real time events.

  • The Tinn source code will always be less than 200 lines. Functions externed in the Tinn header are protected with the xt namespace standing for externed tinn.

  • Tinn can easily be multi-threaded with a bit of ingenuity but the master branch will remain single threaded to aid development for embedded systems.

  • Tinn does not seed the random number generator. Do not forget to do so yourself.

  • Always shuffle your input data. Shuffle again after every training iteration.

  • Get greater training accuracy by annealing your learning rate. For instance, multiply your learning rate by 0.99 every training iteration. This will zero in on a good learning minima.

Disclaimer

Tinn is a practice in minimalism.

Tinn is not a fully featured neural network C library like Kann, or Genann:

https://github.com/attractivechaos/kann

https://github.com/codeplea/genann

Ports

Rust: https://github.com/dvdplm/rustinn

Other

A Tutorial using Tinn NN and CTypes

Tiny Neural Network Library in 200 Lines of Code

Ähnliche Repositories
sindresorhus/ky

🌳 Tiny & elegant JavaScript HTTP client based on the Fetch API

TypeScriptnpmMIT Licensefetchwhatwg-fetch
17k482
developit/mitt

🥊 Tiny 200 byte functional event emitter / pubsub.

TypeScriptnpmMIT Licensemittevent-handlers
npm.im/mitt
11.9k483
fabiospampinato/cash

An absurdly small jQuery alternative for modern browsers.

JavaScriptnpmMIT Licensecashselector
7k271
nathancahill/split

Unopinionated utilities for resizeable split views

JavaScriptnpmMIT Licensecsssplit
split.js.org
6.3k446
angus-c/just

A library of dependency-free JavaScript utilities that do just one thing.

JavaScriptnpmMIT Licensedependency-freejavascript
anguscroll.com/just
6.2k209
nesbox/TIC-80

TIC-80 is a fantasy computer for making, playing and sharing tiny games.

CMIT Licensetic80retro
tic80.com
6.1k619
developit/unfetch

🐕 Bare minimum 500b fetch polyfill.

JavaScriptnpmMIT Licensefetchajax
npm.im/unfetch
5.7k202
hustcc/timeago.js

:clock8: :hourglass: timeago.js is a tiny(2.0 kb) library used to format date with `*** time ago` statement.

TypeScriptnpmMIT Licensetimeagodatetime
timeago.ling.pub
5.4k404
tinyplex/tinybase

A reactive data store & sync engine.

TypeScriptnpmMIT Licensereactjavascript
tinybase.org
5.1k130
omgovich/react-colorful

🎨 A tiny (2,8 KB) color picker component for React and Preact apps

TypeScriptnpmMIT Licensecolor-pickercolor
omgovich.github.io/react-colorful
3.5k121
redom/redom

Tiny (2 KB) turboboosted JavaScript library for creating user interfaces.

JavaScriptnpmMIT Licensejavascriptdom
redom.js.org
3.4k123
mpaland/printf

Tiny, fast, non-dependent and fully loaded printf implementation for embedded systems. Extensive test suite passing.

CMIT Licenseprintfno-dependencies
3k559