gitextract__92euf85/ ├── .gitattributes ├── .github/ │ └── workflows/ │ ├── main.yml │ └── release.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── README.md ├── deepfloorplan.ipynb ├── docs/ │ ├── app.toml │ ├── cfg_test.md │ ├── experiments/ │ │ ├── mobilenetv1/ │ │ │ ├── exp1/ │ │ │ │ ├── compress.toml │ │ │ │ ├── deploy.toml │ │ │ │ └── train.toml │ │ │ └── exp2/ │ │ │ ├── compress.toml │ │ │ ├── deploy.toml │ │ │ └── train.toml │ │ ├── mobilenetv2/ │ │ │ └── exp1/ │ │ │ └── train.toml │ │ ├── resnet50/ │ │ │ └── exp1/ │ │ │ └── train.toml │ │ └── vgg16/ │ │ ├── exp1/ │ │ │ ├── compress.toml │ │ │ ├── compress_log.toml │ │ │ ├── deploy.toml │ │ │ └── train.toml │ │ ├── exp2/ │ │ │ ├── compress.toml │ │ │ ├── deploy.toml │ │ │ └── train.toml │ │ └── exp3/ │ │ ├── compress.toml │ │ ├── deploy.toml │ │ └── train.toml │ ├── game.toml │ ├── notebook.toml │ └── pytest.md ├── install/ │ └── environment.yml ├── mypy.ini ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── src/ │ └── dfp/ │ ├── __init__.py │ ├── app.py │ ├── convert2tflite.py │ ├── data.py │ ├── deploy.py │ ├── game/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── controller.py │ │ ├── model.py │ │ └── view.py │ ├── loss.py │ ├── net.py │ ├── net_func.py │ ├── train.py │ └── utils/ │ ├── __init__.py │ ├── legend.py │ ├── rgb_ind_convertor.py │ ├── settings.py │ └── util.py └── tests/ ├── __init__.py ├── test_app.py ├── test_convert2tflite.py ├── test_data.py ├── test_deploy.py ├── test_loss.py ├── test_net.py ├── test_train.py └── utils/ ├── __init__.py ├── test_legend.py ├── test_rgb_ind_convertor.py └── test_util.py