├── .idea ├── .gitignore ├── Adaboost.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml └── modules.xml ├── LICENSE ├── README.md ├── main.py └── 训练数据.png /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Adaboost.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/.idea/Adaboost.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/main.py -------------------------------------------------------------------------------- /训练数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick9313/AdaBoost/HEAD/训练数据.png --------------------------------------------------------------------------------