├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── README_IMGS ├── 30万分数.png ├── 命名约定.jpg ├── 多项式回归(degree=7).png ├── 投影距离.jpg └── 线性回归.png ├── assests ├── center_black.png ├── center_white.png └── piece.png ├── requirements.txt ├── run.py ├── src ├── __init__.py ├── adb.py ├── jump.py └── model.py └── training.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/README.md -------------------------------------------------------------------------------- /README_IMGS/30万分数.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/README_IMGS/30万分数.png -------------------------------------------------------------------------------- /README_IMGS/命名约定.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/README_IMGS/命名约定.jpg -------------------------------------------------------------------------------- /README_IMGS/多项式回归(degree=7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/README_IMGS/多项式回归(degree=7).png -------------------------------------------------------------------------------- /README_IMGS/投影距离.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/README_IMGS/投影距离.jpg -------------------------------------------------------------------------------- /README_IMGS/线性回归.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/README_IMGS/线性回归.png -------------------------------------------------------------------------------- /assests/center_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/assests/center_black.png -------------------------------------------------------------------------------- /assests/center_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/assests/center_white.png -------------------------------------------------------------------------------- /assests/piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/assests/piece.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/run.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/src/adb.py -------------------------------------------------------------------------------- /src/jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/src/jump.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/src/model.py -------------------------------------------------------------------------------- /training.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrchi/WechatJump/HEAD/training.txt --------------------------------------------------------------------------------