aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/00_introduction.dox12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/00_introduction.dox b/docs/00_introduction.dox
index bb1dfec69e..37c39f50a4 100644
--- a/docs/00_introduction.dox
+++ b/docs/00_introduction.dox
@@ -237,6 +237,18 @@ If there is more than one release in a month then an extra sequential number is
@subsection S2_2_changelog Changelog
+v20.11 Public major release
+ - Interface change
+ - Properly support softmax axis to have the same meaning as other major frameworks. That is, axis now defines the dimension
+ on which Softmax/Logsoftmax is performed. E.g. for input of shape 4x5x6 and axis=1, softmax will be applied to 4x6=24 vectors of size 5.
+ The supported value range of axis is [-rank, rank).
+ This change applies to the following functions:
+ - @ref NESoftmaxLayer
+ - @ref NELogSoftmaxLayer
+ - @ref CLSoftmaxLayer
+ - @ref CLLogSoftmaxLayer
+ - @ref GCSoftmaxLayer
+
v20.08 Public major release
- Various bug fixes.
- Various optimisations.