Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozhnikov authored Aug 5, 2020
1 parent 46f0126 commit 5102ad1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ pip install https://github.com/arogozhnikov/einops/archive/master.zip

`einops` has a minimalistic yet powerful API.

Two operations are provided (see [einops tutorial](https://github.com/arogozhnikov/einops/blob/master/docs/) for examples)
Three operations are provided (see [einops tutorial](https://github.com/arogozhnikov/einops/blob/master/docs/) for examples)

```python
from einops import rearrange, reduce, repeat
Expand Down Expand Up @@ -109,6 +109,7 @@ model = Sequential(
)
```

<!---
Additionally two auxiliary functions provided
```python
from einops import asnumpy, parse_shape
Expand All @@ -117,6 +118,7 @@ numpy_tensor = asnumpy(input_tensor)
# einops.parse_shape gives a shape of axes of interest
parse_shape(input_tensor, 'batch _ h w') # e.g {'batch': 64, 'h': 128, 'w': 160}
```
-->

## Naming

Expand Down

0 comments on commit 5102ad1

Please sign in to comment.