├── README.MD ├── dataset.py ├── main.py ├── models ├── __init__.py ├── basic_module.py ├── loss.py └── resnet.py ├── requirements.txt ├── scene.pth ├── scripts └── data_process.py └── utils.py /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/README.MD -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/dataset.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/basic_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/models/basic_module.py -------------------------------------------------------------------------------- /models/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/models/loss.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/models/resnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/requirements.txt -------------------------------------------------------------------------------- /scene.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/scene.pth -------------------------------------------------------------------------------- /scripts/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/scripts/data_process.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyuntc/scene-baseline/HEAD/utils.py --------------------------------------------------------------------------------