Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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