Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
lempiji committed Mar 7, 2021
1 parent 5f8dba5 commit c478615
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,48 @@

![D](https://github.com/lempiji/golem/workflows/D/badge.svg)

A library that provides tensors and computational graphs for machine learning.

## Concept

1. Lower the hurdle and learning curve to getting started.
2. Use language features to make model description simple and safe.
3. Unify the code and language for training and production environments.

## Features

- Computational graph (autograd)
- A statically size checked slice
- A statically size checked tensor
- with shape-safe operators
- Statically omit grads from tensor
- `UseGradient.no` or `No.gradient`
- Some friendly error messages
- Simple `SGD` , `Adam` or `AdaBelief` optimizer

## Usage

__command__

```console
dub init
dub add golem
```

__dub.json__

```json
{
"dependencies": [
"golem": "~>0.5.0"
]
}
```

__dub.sdl__

```json
dependency "golem" version="~>0.5.0"
```

## Examples

```d
Expand Down

0 comments on commit c478615

Please sign in to comment.