grey_matter

Version, currently master branch1 version
  • master branchlatestJun 26, 2017

github.com/dorkrawk/grey_matter

Grey Matter is a basic artificial neural network library for Crystal.

9 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  grey_matter:
    github: dorkrawk/grey_matter
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.21.1
License
MIT
Author
Dave <dave.schwantes@gmail.com>

Dependencies

This version declares no dependencies.

README

# grey_matter

Gray Matter is a basic [artificial neural network](https://en.wikipedia.org/wiki/Artificial_neural_network) for Crystal.

## Installation

Add this to your application's `shard.yml`:

```yaml
dependencies:
  grey_matter:
    github: dorkrawk/grey_matter
```

## Usage

```crystal
require "grey_matter"
```

## Why The Name?

I like [brains](https://en.wikipedia.org/wiki/Grey_matter) and [Oingo Boingo](https://www.youtube.com/watch?v=KzEFLz_W2rw).

## Contributing

1. Fork it ( https://github.com/dorkrawk/grey_matter/fork )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request

## Contributors

- [dorkrawk](https://github.com/dorkrawk) (Dave) - creator, maintainer