You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by wa...@apache.org on 2020/10/31 06:37:14 UTC

[singa] branch dev updated (da67921 -> 207bec2)

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

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


    from da67921  Merge pull request #812 from chrishkchris/conflictfilename
     new 4eb3763  Implement Squeezenet using Squeezenet1.1
     new 5588eeb  Modify the comment regarding dimension
     new 1efaf4b  Change device from CPU to GPU
     new a1cc797  Formating squeezenet
     new 8f7b4ef  Remove shufflenet files
     new 1f88218  Comment out testing part
     new a00a23b  Merge pull request #711 from agnesnatasya/squeezenet
     new 9c65c99  Implement vgg19 model from onnx model zoo
     new 319358f  Merge pull request #717 from Alvinnyk/vgg19
     new f334f6b  Shufflenet v1
     new 456ef8b  Merge pull request #718 from Shashankwer/shufflenetv1
     new 3ce2966  Implement densenet121 from ONNX
     new ace84fe  Change device to GPU
     new c5769f1  Merge pull request #721 from agnesnatasya/densenet
     new f5a9cdf  Merge branch 'dev' for V3.1-RC1
     new 47017c1  fix the link issue in readme file
     new 2b9c1f3  Updated activation.cc
     new 8ff7e10  Merge pull request #745 from sourcepirate/patch-2
     new 2ac89cc  fix the license issue
     new 2705c65  change the filename to be consistent with the docs
     new b18a87e  Merge remote-tracking branch 'nudles/master'
     new 389bd56  Update LICENSE
     new e1f346d  Update pom.xml
     new 4de1590  Merge pull request #798 from nudles/master
     new 0edff7b  fix some issues and requirements
     new ba1782d  Merge pull request #801 from joddiy/add-ro_bert_a-requirements
     new 7b57a2e  Update the release note for v3.1.0.rc1
     new 82fc9c8  Merge remote-tracking branch 'origin/master'
     new 5c462d0  Merge pull request #803 from nudles/master
     new e486eea  change default python version to 3.6 to be compatible with colab
     new af7b6be  fix_expand_operator
     new b075f9f  Merge pull request #804 from joddiy/fix_expand
     new c8c8063  fix README missing install link
     new 3654b91  Merge pull request #806 from googol-lab/master
     new 43e912f  fix onnx training examples
     new eab6c94  Merge pull request #808 from joddiy/fix_onnx_training
     new a3e88c9  fix mlp module import error
     new be6a8f4  Merge pull request #809 from googol-lab/master
     new c6dc57f  Merge branch 'master' of github.com:apache/singa
     new ea8d671  update the version setting in cmakefile
     new 2da007a  Merge branch 'dev' into resolve_conflict
     new 207bec2  Merge pull request #813 from chrishkchris/resolve_conflict

The 2251 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CMakeLists.txt                                     | 25 +++---
 LICENSE                                            | 33 ++++++++
 README.md                                          |  8 +-
 RELEASE_NOTES                                      | 41 ++++++++++
 examples/cnn/train_cnn.py                          |  4 +-
 examples/onnx/{vgg16.py => densenet121.py}         | 57 +++++++-------
 examples/onnx/gpt2/gpt2.py                         |  2 +-
 examples/onnx/{gpt2 => ro_bert_a}/requirements.txt |  0
 examples/onnx/{ => ro_bert_a}/ro_bert_a.py         | 12 +--
 examples/onnx/{shufflenetv2.py => shufflenetv1.py} | 89 ++++++++++------------
 examples/onnx/{vgg16.py => squeezenet.py}          | 67 ++++++++--------
 examples/onnx/training/model.json                  | 60 +++++++++++----
 examples/onnx/training/train.py                    | 12 +--
 examples/onnx/{vgg16.py => vgg19.py}               | 61 ++++++++-------
 java/pom.xml                                       |  3 +
 python/singa/autograd.py                           |  8 +-
 setup.py                                           |  2 +-
 src/model/layer/activation.cc                      |  2 +-
 tool/conda/singa/conda_build_config.yaml           |  4 +-
 .../devel/centos6/cuda10/Dockerfile.manylinux2014  |  2 +-
 20 files changed, 301 insertions(+), 191 deletions(-)
 copy examples/onnx/{vgg16.py => densenet121.py} (71%)
 copy examples/onnx/{gpt2 => ro_bert_a}/requirements.txt (100%)
 rename examples/onnx/{ => ro_bert_a}/ro_bert_a.py (95%)
 copy examples/onnx/{shufflenetv2.py => shufflenetv1.py} (59%)
 copy examples/onnx/{vgg16.py => squeezenet.py} (66%)
 copy examples/onnx/{vgg16.py => vgg19.py} (70%)