You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemds.apache.org by ma...@apache.org on 2021/09/11 18:47:51 UTC

[systemds] 01/02: [MINOR] Fixed typo in efficientNet.dml

This is an automated email from the ASF dual-hosted git repository.

markd pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git

commit 77d1c6073178aff8c68ac4dabd8b2c125e73a153
Author: Mark Dokter <ma...@dokter.cc>
AuthorDate: Tue Aug 10 14:20:15 2021 +0200

    [MINOR] Fixed typo in efficientNet.dml
---
 scripts/nn/examples/efficientNet.dml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/nn/examples/efficientNet.dml b/scripts/nn/examples/efficientNet.dml
index 012eb33..da5862e 100644
--- a/scripts/nn/examples/efficientNet.dml
+++ b/scripts/nn/examples/efficientNet.dml
@@ -90,7 +90,7 @@ initNetwork = function(int InputChannels, int NumberOutputClasses, int seed)
   [Gamma_top, Beta_top, EmaMean_top, EmaVar_top] = batchnorm::init(1280)
   [DW_top, Db_top] = affine::init(1280, NumberOutputClasses, seed)
 
-    model = list(CW_stem, Cb_stem, Gamma_stem, Beta_stem, EmaMean_stem,vEmaVar_stem,
+    model = list(CW_stem, Cb_stem, Gamma_stem, Beta_stem, EmaMean_stem, EmaVar_stem,
       as.matrix(mb_parameters[1]),
       as.matrix(mb_parameters[2]),
       as.matrix(mb_parameters[3]),