├── .gitignore ├── LICENSE ├── README.md ├── core ├── MainWindow.py ├── __init__.py ├── canvas_item.py ├── canvas_window.py ├── config.py ├── config_window.py ├── export.py └── tool.py ├── pic └── 演示图片.png ├── requirements.txt ├── test.py ├── test_model.json └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/README.md -------------------------------------------------------------------------------- /core/MainWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/MainWindow.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/canvas_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/canvas_item.py -------------------------------------------------------------------------------- /core/canvas_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/canvas_window.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/config.py -------------------------------------------------------------------------------- /core/config_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/config_window.py -------------------------------------------------------------------------------- /core/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/export.py -------------------------------------------------------------------------------- /core/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/core/tool.py -------------------------------------------------------------------------------- /pic/演示图片.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/pic/演示图片.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/test.py -------------------------------------------------------------------------------- /test_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/test_model.json -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cIamity/SimplePytorch/HEAD/train.py --------------------------------------------------------------------------------