├── README.md ├── detect_explorer.py ├── detect_train.py ├── export.py ├── image ├── 2.jpg ├── 6.jpg ├── 7.png ├── 8.jpg ├── 9.jpg ├── chepai.png ├── chepaiwenzi.png ├── gradio1.png ├── hecheng.png └── result.jpg ├── kenshutsu.py ├── ocr_config.py ├── ocr_test.py ├── read_plate.py ├── requirements.txt └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── __init__.cpython-36.pyc ├── __init__.cpython-38.pyc ├── __init__.cpython-39.pyc ├── activations.cpython-38.pyc ├── augmentations.cpython-310.pyc ├── augmentations.cpython-36.pyc ├── augmentations.cpython-38.pyc ├── augmentations.cpython-39.pyc ├── autoanchor.cpython-310.pyc ├── autoanchor.cpython-36.pyc ├── autoanchor.cpython-38.pyc ├── autoanchor.cpython-39.pyc ├── autobatch.cpython-38.pyc ├── benchmarks.cpython-38.pyc ├── callbacks.cpython-38.pyc ├── dataloaders.cpython-310.pyc ├── dataloaders.cpython-36.pyc ├── dataloaders.cpython-38.pyc ├── dataloaders.cpython-39.pyc ├── downloads.cpython-310.pyc ├── downloads.cpython-36.pyc ├── downloads.cpython-38.pyc ├── downloads.cpython-39.pyc ├── general.cpython-310.pyc ├── general.cpython-36.pyc ├── general.cpython-38.pyc ├── general.cpython-39.pyc ├── loss.cpython-38.pyc ├── metrics.cpython-310.pyc ├── metrics.cpython-36.pyc ├── metrics.cpython-38.pyc ├── metrics.cpython-39.pyc ├── plots.cpython-310.pyc ├── plots.cpython-36.pyc ├── plots.cpython-38.pyc ├── plots.cpython-39.pyc ├── torch_utils.cpython-310.pyc ├── torch_utils.cpython-36.pyc ├── torch_utils.cpython-38.pyc └── torch_utils.cpython-39.pyc ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ └── resume.cpython-38.pyc ├── mime.sh ├── resume.py └── userdata.sh ├── benchmarks.py ├── callbacks.py ├── dataloaders.py ├── docker ├── Dockerfile ├── Dockerfile-arm64 └── Dockerfile-cpu ├── downloads.py ├── flask_rest_api ├── README.md ├── __pycache__ │ ├── example_request.cpython-38.pyc │ └── restapi.cpython-38.pyc ├── example_request.py └── restapi.py ├── general.py ├── google_app_engine ├── Dockerfile ├── additional_requirements.txt └── app.yaml └── loggers ├── __init__.py ├── __pycache__ └── __init__.cpython-38.pyc └── wandb ├── README.md ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── log_dataset.cpython-38.pyc ├── sweep.cpython-38.pyc └── wandb_utils.cpython-38.pyc ├── log_dataset.py └── sweep.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/README.md -------------------------------------------------------------------------------- /detect_explorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/detect_explorer.py -------------------------------------------------------------------------------- /detect_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/detect_train.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/export.py -------------------------------------------------------------------------------- /image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/2.jpg -------------------------------------------------------------------------------- /image/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/6.jpg -------------------------------------------------------------------------------- /image/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/7.png -------------------------------------------------------------------------------- /image/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/8.jpg -------------------------------------------------------------------------------- /image/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/9.jpg -------------------------------------------------------------------------------- /image/chepai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/chepai.png -------------------------------------------------------------------------------- /image/chepaiwenzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/chepaiwenzi.png -------------------------------------------------------------------------------- /image/gradio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/gradio1.png -------------------------------------------------------------------------------- /image/hecheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/hecheng.png -------------------------------------------------------------------------------- /image/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/image/result.jpg -------------------------------------------------------------------------------- /kenshutsu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/kenshutsu.py -------------------------------------------------------------------------------- /ocr_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/ocr_config.py -------------------------------------------------------------------------------- /ocr_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/ocr_test.py -------------------------------------------------------------------------------- /read_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/read_plate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/activations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/activations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/augmentations.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/augmentations.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/augmentations.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/augmentations.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/autoanchor.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/autoanchor.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/autoanchor.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autoanchor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/autoanchor.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/autobatch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/autobatch.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/benchmarks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/benchmarks.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/callbacks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/callbacks.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/dataloaders.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/dataloaders.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/dataloaders.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataloaders.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/dataloaders.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/downloads.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/downloads.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/downloads.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/downloads.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/downloads.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/general.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/general.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/general.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/general.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/loss.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/loss.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/metrics.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/metrics.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/metrics.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/plots.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/plots.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/plots.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/plots.cpython-39.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/torch_utils.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/torch_utils.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/torch_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/torch_utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/__pycache__/torch_utils.cpython-39.pyc -------------------------------------------------------------------------------- /utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/activations.py -------------------------------------------------------------------------------- /utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/augmentations.py -------------------------------------------------------------------------------- /utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/autoanchor.py -------------------------------------------------------------------------------- /utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/autobatch.py -------------------------------------------------------------------------------- /utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/aws/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/aws/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/aws/__pycache__/resume.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/aws/__pycache__/resume.cpython-38.pyc -------------------------------------------------------------------------------- /utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/aws/mime.sh -------------------------------------------------------------------------------- /utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/aws/resume.py -------------------------------------------------------------------------------- /utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/aws/userdata.sh -------------------------------------------------------------------------------- /utils/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/benchmarks.py -------------------------------------------------------------------------------- /utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/callbacks.py -------------------------------------------------------------------------------- /utils/dataloaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/dataloaders.py -------------------------------------------------------------------------------- /utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/docker/Dockerfile -------------------------------------------------------------------------------- /utils/docker/Dockerfile-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/docker/Dockerfile-arm64 -------------------------------------------------------------------------------- /utils/docker/Dockerfile-cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/docker/Dockerfile-cpu -------------------------------------------------------------------------------- /utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/downloads.py -------------------------------------------------------------------------------- /utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /utils/flask_rest_api/__pycache__/example_request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/flask_rest_api/__pycache__/example_request.cpython-38.pyc -------------------------------------------------------------------------------- /utils/flask_rest_api/__pycache__/restapi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/flask_rest_api/__pycache__/restapi.cpython-38.pyc -------------------------------------------------------------------------------- /utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/general.py -------------------------------------------------------------------------------- /utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/__init__.py -------------------------------------------------------------------------------- /utils/loggers/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/log_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/__pycache__/log_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/sweep.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/__pycache__/sweep.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/__pycache__/wandb_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zxx1218/LicensePlateDetection/HEAD/utils/loggers/wandb/sweep.py --------------------------------------------------------------------------------