You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by zh...@apache.org on 2022/12/09 07:04:46 UTC

[singa] branch dev updated: Add resnet script for cnn example

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

zhaojing pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/singa.git


The following commit(s) were added to refs/heads/dev by this push:
     new 1176e481 Add resnet script for cnn example
     new ff2a770d Merge pull request #1026 from zlheui/add-resnet-script
1176e481 is described below

commit 1176e481828a50ef52471509e6e1961d539b6153
Author: zhulei <zl...@gmail.com>
AuthorDate: Thu Dec 8 13:07:17 2022 +0800

    Add resnet script for cnn example
---
 examples/cnn/run.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/examples/cnn/run.sh b/examples/cnn/run.sh
index 1b4e9939..8050d468 100644
--- a/examples/cnn/run.sh
+++ b/examples/cnn/run.sh
@@ -20,11 +20,14 @@
 ### mnist
 python train_cnn.py mlp mnist
 python train_cnn.py cnn mnist
+python train_cnn.py resnet mnist
 
 ### cifar10
 python train_cnn.py mlp cifar10
 python train_cnn.py cnn cifar10
+python train_cnn.py resnet cifar10
 
 ### cifar100
 python train_cnn.py mlp cifar100
 python train_cnn.py cnn cifar100
+python train_cnn.py resnet cifar100
\ No newline at end of file