Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greyblake/crystal-aitk
Artificial Intelligence Tool Kit for Crystal lang
https://github.com/greyblake/crystal-aitk
Last synced: about 1 month ago
JSON representation
Artificial Intelligence Tool Kit for Crystal lang
- Host: GitHub
- URL: https://github.com/greyblake/crystal-aitk
- Owner: greyblake
- License: mit
- Created: 2016-02-21T23:42:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-01-06T16:12:53.000Z (almost 6 years ago)
- Last Synced: 2023-10-25T17:16:21.670Z (about 1 year ago)
- Language: Crystal
- Size: 35.2 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aitk
Artificial Intelligence Tool Kit for Crystal programming language.
Currently it is just a sandbox, where I learn the AI algorithms based on
[Artificial Intelligence for Humans](http://www.heatonresearch.com/aifh/) books.## So far implemented
* Clustering
* K-meaning
* Radial basis functions network
* Optimization
* [Nelder-Mead method](https://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method)
* Hill Climbing method
* Greedy Random method## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
aitk:
github: greyblake/crystal-aitk
```## Usage
```crystal
require "aitk"
```## Contributors
- [greyblake](https://github.com/greyblake) Potapov Sergey - creator, maintainer