From f649a3c6280dca593697a61838e9716788f9a172 Mon Sep 17 00:00:00 2001 From: Todd Sundsted Date: Mon, 20 Jan 2020 19:49:44 -0500 Subject: [PATCH] Update status in README. --- README.md | 44 ++++++++++++++++++++++++++++++++++++++------ 1 file changed, 38 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f2600635..bf9e11d0 100644 --- a/README.md +++ b/README.md @@ -85,9 +85,41 @@ non-standard locations without guidance. # Status -MXNet.cr currently focuses on supporting most of the basic arithmetic -operations on arrays and symbols, with support for symbolic evaluation -and some support for automatic differentiation thrown in. Almost all -operations in the library are exposed, however, via the automatically -generated `Ops`, `Sparse`, `Linalg`, etc. modules but documentation -and guidance are nonexistent at this time. +MXNet.cr currently implements a subset of +[Gluon](https://gluon.mxnet.io/), and supports most of the basic +arithmetic operations on arrays and symbols, with support for symbolic +evaluation and some support for automatic differentiation thrown +in. Almost all operations in the library are exposed, however, via the +automatically generated `Ops`, `Sparse`, `Linalg`, etc. modules but +documentation and guidance are nonexistent at this time. + +Implemented functionality: +* MXNet + * Autograd + * Context + * Executor + * Optimizer + * NDArray + * Symbol + * Gluon + * Block + * HybridBlock + * Sequential + * HybridSequential + * SymbolBlock + * Dense + * Pooling + * Conv1D + * Conv2D + * Conv3D + * MaxPool1D + * MaxPool2D + * MaxPool3D + * Flatten + * L1Loss + * L2Loss + * SoftmaxCrossEntropyLoss + * Activation + * Trainer + * Parameter + * Constant