├── .gitignore ├── AI_Example ├── 01~02 │ ├── example.c │ └── grad_verif_tf.py ├── 03 │ └── example.c ├── 04-classification-xor~05-Optim(ADAM) │ └── example.c ├── 06-regression~07-L2 regularization │ └── example.c ├── 09~10-CNN │ ├── CNN1.php │ └── example.c ├── 11~12-CNN-MNIST │ ├── CNN1.php │ ├── CNN2Header.py │ ├── CNN_MNIST_RUN.py │ ├── CnnData.npz │ ├── MNIST_CNN.h │ └── example.c ├── 13-RNN~14-GRU-RNN(8bit add) │ └── example.c └── 15-GRU-RNN-MNIST │ ├── MNIST_RNN.h │ ├── RNN2Header.py │ ├── RNN_MNIST2.py │ ├── RnnData2.npz │ └── example.c ├── LICENSE ├── OS_Example ├── 00 │ └── main.c └── 01 │ └── main.c ├── README.md ├── StrDbgV1_cmd ├── StrDbgV1_cmd │ ├── StrDbgV1_cmd.pro │ ├── StrDbgV1_cmd.pro.user │ ├── main.cpp │ ├── widget.cpp │ ├── widget.h │ └── widget.ui ├── build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug │ ├── .qmake.stash │ ├── Makefile │ ├── Makefile.Debug │ ├── Makefile.Release │ ├── _SD_MEM.txt │ ├── debug │ │ ├── moc_predefs.h │ │ └── moc_widget.cpp │ └── ui_widget.h ├── build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release │ ├── .qmake.stash │ ├── Makefile │ ├── Makefile.Debug │ ├── Makefile.Release │ ├── _SD_MEM.txt │ ├── release │ │ ├── moc_predefs.h │ │ └── moc_widget.cpp │ └── ui_widget.h └── strdbg_cmd_v1 │ ├── _SD_MEM.txt │ └── translations │ ├── qt_ca.qm │ ├── qt_cs.qm │ ├── qt_de.qm │ ├── qt_en.qm │ ├── qt_fi.qm │ ├── qt_fr.qm │ ├── qt_he.qm │ ├── qt_hu.qm │ ├── qt_it.qm │ ├── qt_ja.qm │ ├── qt_ko.qm │ ├── qt_lv.qm │ ├── qt_pl.qm │ ├── qt_ru.qm │ ├── qt_sk.qm │ └── qt_uk.qm └── picture ├── 04~05.jpg ├── 13-1.jpg ├── 13-2.jpg ├── 14-1.jpg ├── 14-2.jpg ├── MNIST-CNN.jpg └── MNIST-GRURNN.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/.gitignore -------------------------------------------------------------------------------- /AI_Example/01~02/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/01~02/example.c -------------------------------------------------------------------------------- /AI_Example/01~02/grad_verif_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/01~02/grad_verif_tf.py -------------------------------------------------------------------------------- /AI_Example/03/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/03/example.c -------------------------------------------------------------------------------- /AI_Example/04-classification-xor~05-Optim(ADAM)/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/04-classification-xor~05-Optim(ADAM)/example.c -------------------------------------------------------------------------------- /AI_Example/06-regression~07-L2 regularization/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/06-regression~07-L2 regularization/example.c -------------------------------------------------------------------------------- /AI_Example/09~10-CNN/CNN1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/09~10-CNN/CNN1.php -------------------------------------------------------------------------------- /AI_Example/09~10-CNN/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/09~10-CNN/example.c -------------------------------------------------------------------------------- /AI_Example/11~12-CNN-MNIST/CNN1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/11~12-CNN-MNIST/CNN1.php -------------------------------------------------------------------------------- /AI_Example/11~12-CNN-MNIST/CNN2Header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/11~12-CNN-MNIST/CNN2Header.py -------------------------------------------------------------------------------- /AI_Example/11~12-CNN-MNIST/CNN_MNIST_RUN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/11~12-CNN-MNIST/CNN_MNIST_RUN.py -------------------------------------------------------------------------------- /AI_Example/11~12-CNN-MNIST/CnnData.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/11~12-CNN-MNIST/CnnData.npz -------------------------------------------------------------------------------- /AI_Example/11~12-CNN-MNIST/MNIST_CNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/11~12-CNN-MNIST/MNIST_CNN.h -------------------------------------------------------------------------------- /AI_Example/11~12-CNN-MNIST/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/11~12-CNN-MNIST/example.c -------------------------------------------------------------------------------- /AI_Example/13-RNN~14-GRU-RNN(8bit add)/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/13-RNN~14-GRU-RNN(8bit add)/example.c -------------------------------------------------------------------------------- /AI_Example/15-GRU-RNN-MNIST/MNIST_RNN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/15-GRU-RNN-MNIST/MNIST_RNN.h -------------------------------------------------------------------------------- /AI_Example/15-GRU-RNN-MNIST/RNN2Header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/15-GRU-RNN-MNIST/RNN2Header.py -------------------------------------------------------------------------------- /AI_Example/15-GRU-RNN-MNIST/RNN_MNIST2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/15-GRU-RNN-MNIST/RNN_MNIST2.py -------------------------------------------------------------------------------- /AI_Example/15-GRU-RNN-MNIST/RnnData2.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/15-GRU-RNN-MNIST/RnnData2.npz -------------------------------------------------------------------------------- /AI_Example/15-GRU-RNN-MNIST/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/AI_Example/15-GRU-RNN-MNIST/example.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/LICENSE -------------------------------------------------------------------------------- /OS_Example/00/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/OS_Example/00/main.c -------------------------------------------------------------------------------- /OS_Example/01/main.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/README.md -------------------------------------------------------------------------------- /StrDbgV1_cmd/StrDbgV1_cmd/StrDbgV1_cmd.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/StrDbgV1_cmd/StrDbgV1_cmd.pro -------------------------------------------------------------------------------- /StrDbgV1_cmd/StrDbgV1_cmd/StrDbgV1_cmd.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/StrDbgV1_cmd/StrDbgV1_cmd.pro.user -------------------------------------------------------------------------------- /StrDbgV1_cmd/StrDbgV1_cmd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/StrDbgV1_cmd/main.cpp -------------------------------------------------------------------------------- /StrDbgV1_cmd/StrDbgV1_cmd/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/StrDbgV1_cmd/widget.cpp -------------------------------------------------------------------------------- /StrDbgV1_cmd/StrDbgV1_cmd/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/StrDbgV1_cmd/widget.h -------------------------------------------------------------------------------- /StrDbgV1_cmd/StrDbgV1_cmd/widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/StrDbgV1_cmd/widget.ui -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/.qmake.stash -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/Makefile -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/Makefile.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/Makefile.Debug -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/Makefile.Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/Makefile.Release -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/_SD_MEM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/_SD_MEM.txt -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/debug/moc_predefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/debug/moc_predefs.h -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/debug/moc_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/debug/moc_widget.cpp -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/ui_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Debug/ui_widget.h -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/.qmake.stash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/.qmake.stash -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/Makefile -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/Makefile.Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/Makefile.Debug -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/Makefile.Release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/Makefile.Release -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/_SD_MEM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/_SD_MEM.txt -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/release/moc_predefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/release/moc_predefs.h -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/release/moc_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/release/moc_widget.cpp -------------------------------------------------------------------------------- /StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/ui_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/build-StrDbgV1_cmd-Desktop_Qt_5_8_0_MSVC2015_64bit-Release/ui_widget.h -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/_SD_MEM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/_SD_MEM.txt -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ca.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_cs.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_de.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_en.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_fi.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_fr.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_he.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_hu.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_it.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ja.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ko.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_lv.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_pl.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_ru.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_sk.qm -------------------------------------------------------------------------------- /StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/StrDbgV1_cmd/strdbg_cmd_v1/translations/qt_uk.qm -------------------------------------------------------------------------------- /picture/04~05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/04~05.jpg -------------------------------------------------------------------------------- /picture/13-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/13-1.jpg -------------------------------------------------------------------------------- /picture/13-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/13-2.jpg -------------------------------------------------------------------------------- /picture/14-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/14-1.jpg -------------------------------------------------------------------------------- /picture/14-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/14-2.jpg -------------------------------------------------------------------------------- /picture/MNIST-CNN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/MNIST-CNN.jpg -------------------------------------------------------------------------------- /picture/MNIST-GRURNN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shuep418Slw/OSlw_Example/HEAD/picture/MNIST-GRURNN.jpg --------------------------------------------------------------------------------