Skip to content

Commit

Permalink
Added supported function list to README
Browse files Browse the repository at this point in the history
  • Loading branch information
mitmul committed Nov 27, 2017
1 parent 30b8da7 commit 1d3365e
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,55 @@ x = np.zeros((1, 3, 224, 224), dtype=np.float32)

onnx_chainer.export(model, x, filename='VGG16.onnx')
```

## Supported Functions

### Activation

- ELU
- HardSigmoid
- LeakyReLU
- LogSoftmax
- PReLUFunction
- ReLU
- Sigmoid
- Softmax
- Softplus
- Tanh

### Array

- Cast
- Concat
- Depth2Space
- Pad
- Reshape
- Space2Depth
- SplitAxis
- Squeeze
- Tile
- Transpose

### Connection

- Convolution2DFunction
- LinearFunction

### Pooling

- AveragePooling2D
- MaxPooling2D

### Normalization

- BatchNormalization
- FixedBatchNormalization

### Math

- Add
- Sub
- Mul
- Neg
- Absolute
- Div

0 comments on commit 1d3365e

Please sign in to comment.