Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boobsd/tsetlinminimal
Minimal Tsetlin Machine implementation
https://github.com/boobsd/tsetlinminimal
Last synced: about 2 months ago
JSON representation
Minimal Tsetlin Machine implementation
- Host: GitHub
- URL: https://github.com/boobsd/tsetlinminimal
- Owner: BooBSD
- Created: 2024-06-20T21:58:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-24T17:23:50.000Z (6 months ago)
- Last Synced: 2024-06-24T19:24:20.723Z (6 months ago)
- Language: Julia
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minimal Tsetlin Machine
Minimal Tsetlin Machine implementation in just **200** lines of code.This may be useful for implementation in other programming languages.
How to run MNIST example
------------------------0. Make sure that you have installed the latest version of the [Julia language](https://julialang.org/downloads/).
1. Run `julia --project=. -O3 -t 32 --gcthreads=32,1 mnist.jl` where `32` is the number of your logical CPU cores.
Do not forget to uncomment the `@threads` macros in the code of `Tsetlin.jl` file to enable multithreading for training and inference.