Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
mitmul committed Nov 28, 2017
1 parent 305d434 commit 1f49753
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,23 +51,28 @@ Currently 50 Chainer Functions are supported to export in ONNX format.
- Cast
- Concat
- Depth2Space
- Pad
- Pad [^pad1] [^pad2]
- Reshape
- Space2Depth
- SplitAxis
- Squeeze
- Tile
- Transpose

[^pad1]: mode should be either 'constant', 'reflect', or 'edge'
[^pad2]: ONNX doesn't support multiple constant values for Pad operation

### Connection

- Convolution2DFunction
- ConvolutionND
- Deconvolution2DFunction
- DeconvolutionND
- EmbedIDFunction
- EmbedIDFunction [^embed1]
- LinearFunction

[^embed1]: Current ONNX doesn't support ignore_label for EmbedID

### Math

- Add
Expand All @@ -80,16 +85,20 @@ Currently 50 Chainer Functions are supported to export in ONNX format.
- Clip
- Exp
- Identity
- MatMul
- MatMul [^matmul1]
- Maximum
- Minimum
- Sqrt
- SquaredDifference
- Sum

[^matmul1]: Current ONNX doesn't support transpose options for matmul ops

### Noise

- Dropout (NOTE: In test mode, it's not exported)
- Dropout [^dropout1]

[^dropout1]: In test mode, all dropout layers aren't included in the exported file

### Pooling

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='onnx-chainer',
packages=['onnx_chainer'],
version='0.2.1b2',
version='0.2.1b3',
description='ONNX support for Chainer',
author='Shunta Saito',
author_email='[email protected]',
Expand Down

0 comments on commit 1f49753

Please sign in to comment.