├── .idea ├── .gitignore ├── CNN-student-engage.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Generate_anno.py ├── Readme.md ├── crop_face.py ├── data └── Readme.md ├── logs └── Readme.md ├── model ├── CNN.py ├── __init__.py └── __pycache__ │ ├── CNN.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── test.py ├── train.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── dataloader.cpython-37.pyc └── utils.cpython-37.pyc ├── dataloader.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/CNN-student-engage.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/.idea/CNN-student-engage.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Generate_anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/Generate_anno.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/Readme.md -------------------------------------------------------------------------------- /crop_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/crop_face.py -------------------------------------------------------------------------------- /data/Readme.md: -------------------------------------------------------------------------------- 1 | 数据放在这里 -------------------------------------------------------------------------------- /logs/Readme.md: -------------------------------------------------------------------------------- 1 | 训练权重 -------------------------------------------------------------------------------- /model/CNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/model/CNN.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__pycache__/CNN.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/model/__pycache__/CNN.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/train.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloader.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/utils/__pycache__/dataloader.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/utils/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /utils/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/utils/dataloader.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carryg1998/Student-engage-cnn/HEAD/utils/utils.py --------------------------------------------------------------------------------