├── Char_detection_yolo.py ├── README.md ├── Vietnamese ├── DETECTION.py ├── Vietnamese_imgs │ ├── plate1.jpg │ ├── plate2.jpg │ └── vn.jpg ├── char.pt ├── img │ ├── plate1.jpg │ ├── plate2.jpg │ └── vn.jpg └── object.pt ├── character_name.txt ├── evaluate.py ├── exp ├── F1_curve.png ├── PR_curve.png ├── P_curve.png ├── R_curve.png ├── confusion_matrix.png ├── exp26 │ ├── F1_curve.png │ ├── PR_curve.png │ ├── P_curve.png │ ├── R_curve.png │ ├── confusion_matrix.png │ └── re.png ├── re.png └── weights │ ├── best.pt │ └── last.pt ├── img ├── fig.jpg └── table.jpg ├── process_plate.py ├── requirement.txt ├── test_results.txt └── yolov5 ├── data ├── Argoverse.yaml ├── GlobalWheat2020.yaml ├── Objects365.yaml ├── SKU-110K.yaml ├── VOC.yaml ├── VisDrone.yaml ├── coco.yaml ├── coco128.yaml ├── hyps │ ├── hyp.Objects365.yaml │ ├── hyp.VOC.yaml │ ├── hyp.scratch-high.yaml │ ├── hyp.scratch-low.yaml │ └── hyp.scratch-med.yaml ├── images │ ├── bus.jpg │ └── zidane.jpg ├── scripts │ ├── download_weights.sh │ ├── get_coco.sh │ └── get_coco128.sh └── xView.yaml ├── detect.py ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── common.cpython-38.pyc │ ├── experimental.cpython-38.pyc │ └── yolo.cpython-38.pyc ├── common.py ├── experimental.py ├── hub │ ├── anchors.yaml │ ├── yolov3-spp.yaml │ ├── yolov3-tiny.yaml │ ├── yolov3.yaml │ ├── yolov5-bifpn.yaml │ ├── yolov5-fpn.yaml │ ├── yolov5-p2.yaml │ ├── yolov5-p34.yaml │ ├── yolov5-p6.yaml │ ├── yolov5-p7.yaml │ ├── yolov5-panet.yaml │ ├── yolov5l6.yaml │ ├── yolov5m6.yaml │ ├── yolov5n6.yaml │ ├── yolov5s-ghost.yaml │ ├── yolov5s-transformer.yaml │ ├── yolov5s6.yaml │ └── yolov5x6.yaml ├── tf.py ├── yolo.py ├── yolov5l.yaml ├── yolov5m.yaml ├── yolov5n.yaml ├── yolov5s.yaml └── yolov5x.yaml ├── train.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── augmentations.cpython-38.pyc ├── autoanchor.cpython-38.pyc ├── datasets.cpython-38.pyc ├── downloads.cpython-38.pyc ├── general.cpython-38.pyc ├── metrics.cpython-38.pyc ├── plots.cpython-38.pyc └── torch_utils.cpython-38.pyc ├── activations.py ├── augmentations.py ├── autoanchor.py ├── autobatch.py ├── aws ├── __init__.py ├── mime.sh ├── resume.py └── userdata.sh ├── benchmarks.py ├── callbacks.py ├── datasets.py ├── downloads.py ├── flask_rest_api ├── README.md ├── example_request.py └── restapi.py ├── general.py ├── google_app_engine ├── Dockerfile ├── additional_requirements.txt └── app.yaml ├── loggers ├── __init__.py └── wandb │ ├── README.md │ ├── __init__.py │ ├── log_dataset.py │ ├── sweep.py │ ├── sweep.yaml │ └── wandb_utils.py ├── loss.py ├── metrics.py ├── plots.py └── torch_utils.py /Char_detection_yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Char_detection_yolo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/README.md -------------------------------------------------------------------------------- /Vietnamese/DETECTION.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/DETECTION.py -------------------------------------------------------------------------------- /Vietnamese/Vietnamese_imgs/plate1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/Vietnamese_imgs/plate1.jpg -------------------------------------------------------------------------------- /Vietnamese/Vietnamese_imgs/plate2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/Vietnamese_imgs/plate2.jpg -------------------------------------------------------------------------------- /Vietnamese/Vietnamese_imgs/vn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/Vietnamese_imgs/vn.jpg -------------------------------------------------------------------------------- /Vietnamese/char.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/char.pt -------------------------------------------------------------------------------- /Vietnamese/img/plate1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/img/plate1.jpg -------------------------------------------------------------------------------- /Vietnamese/img/plate2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/img/plate2.jpg -------------------------------------------------------------------------------- /Vietnamese/img/vn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/img/vn.jpg -------------------------------------------------------------------------------- /Vietnamese/object.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/Vietnamese/object.pt -------------------------------------------------------------------------------- /character_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/character_name.txt -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/evaluate.py -------------------------------------------------------------------------------- /exp/F1_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/F1_curve.png -------------------------------------------------------------------------------- /exp/PR_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/PR_curve.png -------------------------------------------------------------------------------- /exp/P_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/P_curve.png -------------------------------------------------------------------------------- /exp/R_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/R_curve.png -------------------------------------------------------------------------------- /exp/confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/confusion_matrix.png -------------------------------------------------------------------------------- /exp/exp26/F1_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/exp26/F1_curve.png -------------------------------------------------------------------------------- /exp/exp26/PR_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/exp26/PR_curve.png -------------------------------------------------------------------------------- /exp/exp26/P_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/exp26/P_curve.png -------------------------------------------------------------------------------- /exp/exp26/R_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/exp26/R_curve.png -------------------------------------------------------------------------------- /exp/exp26/confusion_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/exp26/confusion_matrix.png -------------------------------------------------------------------------------- /exp/exp26/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/exp26/re.png -------------------------------------------------------------------------------- /exp/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/re.png -------------------------------------------------------------------------------- /exp/weights/best.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/weights/best.pt -------------------------------------------------------------------------------- /exp/weights/last.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/exp/weights/last.pt -------------------------------------------------------------------------------- /img/fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/img/fig.jpg -------------------------------------------------------------------------------- /img/table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/img/table.jpg -------------------------------------------------------------------------------- /process_plate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/process_plate.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/requirement.txt -------------------------------------------------------------------------------- /test_results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/test_results.txt -------------------------------------------------------------------------------- /yolov5/data/Argoverse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/Argoverse.yaml -------------------------------------------------------------------------------- /yolov5/data/GlobalWheat2020.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/GlobalWheat2020.yaml -------------------------------------------------------------------------------- /yolov5/data/Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/Objects365.yaml -------------------------------------------------------------------------------- /yolov5/data/SKU-110K.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/SKU-110K.yaml -------------------------------------------------------------------------------- /yolov5/data/VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/VOC.yaml -------------------------------------------------------------------------------- /yolov5/data/VisDrone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/VisDrone.yaml -------------------------------------------------------------------------------- /yolov5/data/coco.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/coco.yaml -------------------------------------------------------------------------------- /yolov5/data/coco128.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/coco128.yaml -------------------------------------------------------------------------------- /yolov5/data/hyps/hyp.Objects365.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/hyps/hyp.Objects365.yaml -------------------------------------------------------------------------------- /yolov5/data/hyps/hyp.VOC.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/hyps/hyp.VOC.yaml -------------------------------------------------------------------------------- /yolov5/data/hyps/hyp.scratch-high.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/hyps/hyp.scratch-high.yaml -------------------------------------------------------------------------------- /yolov5/data/hyps/hyp.scratch-low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/hyps/hyp.scratch-low.yaml -------------------------------------------------------------------------------- /yolov5/data/hyps/hyp.scratch-med.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/hyps/hyp.scratch-med.yaml -------------------------------------------------------------------------------- /yolov5/data/images/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/images/bus.jpg -------------------------------------------------------------------------------- /yolov5/data/images/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/images/zidane.jpg -------------------------------------------------------------------------------- /yolov5/data/scripts/download_weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/scripts/download_weights.sh -------------------------------------------------------------------------------- /yolov5/data/scripts/get_coco.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/scripts/get_coco.sh -------------------------------------------------------------------------------- /yolov5/data/scripts/get_coco128.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/scripts/get_coco128.sh -------------------------------------------------------------------------------- /yolov5/data/xView.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/data/xView.yaml -------------------------------------------------------------------------------- /yolov5/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/detect.py -------------------------------------------------------------------------------- /yolov5/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolov5/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/models/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/models/__pycache__/experimental.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/__pycache__/experimental.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/models/__pycache__/yolo.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/__pycache__/yolo.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/common.py -------------------------------------------------------------------------------- /yolov5/models/experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/experimental.py -------------------------------------------------------------------------------- /yolov5/models/hub/anchors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/anchors.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov3-spp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov3-spp.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov3-tiny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov3-tiny.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov3.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-bifpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-bifpn.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-fpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-fpn.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-p2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-p2.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-p34.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-p34.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-p6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-p6.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-p7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-p7.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5-panet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5-panet.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5l6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5l6.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5m6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5m6.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5n6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5n6.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5s-ghost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5s-ghost.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5s-transformer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5s-transformer.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5s6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5s6.yaml -------------------------------------------------------------------------------- /yolov5/models/hub/yolov5x6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/hub/yolov5x6.yaml -------------------------------------------------------------------------------- /yolov5/models/tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/tf.py -------------------------------------------------------------------------------- /yolov5/models/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/yolo.py -------------------------------------------------------------------------------- /yolov5/models/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/yolov5l.yaml -------------------------------------------------------------------------------- /yolov5/models/yolov5m.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/yolov5m.yaml -------------------------------------------------------------------------------- /yolov5/models/yolov5n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/yolov5n.yaml -------------------------------------------------------------------------------- /yolov5/models/yolov5s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/yolov5s.yaml -------------------------------------------------------------------------------- /yolov5/models/yolov5x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/models/yolov5x.yaml -------------------------------------------------------------------------------- /yolov5/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/train.py -------------------------------------------------------------------------------- /yolov5/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__init__.py -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/augmentations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/augmentations.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/autoanchor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/autoanchor.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/datasets.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/datasets.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/downloads.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/downloads.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/general.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/general.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/plots.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/plots.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/__pycache__/torch_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/__pycache__/torch_utils.cpython-38.pyc -------------------------------------------------------------------------------- /yolov5/utils/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/activations.py -------------------------------------------------------------------------------- /yolov5/utils/augmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/augmentations.py -------------------------------------------------------------------------------- /yolov5/utils/autoanchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/autoanchor.py -------------------------------------------------------------------------------- /yolov5/utils/autobatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/autobatch.py -------------------------------------------------------------------------------- /yolov5/utils/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolov5/utils/aws/mime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/aws/mime.sh -------------------------------------------------------------------------------- /yolov5/utils/aws/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/aws/resume.py -------------------------------------------------------------------------------- /yolov5/utils/aws/userdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/aws/userdata.sh -------------------------------------------------------------------------------- /yolov5/utils/benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/benchmarks.py -------------------------------------------------------------------------------- /yolov5/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/callbacks.py -------------------------------------------------------------------------------- /yolov5/utils/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/datasets.py -------------------------------------------------------------------------------- /yolov5/utils/downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/downloads.py -------------------------------------------------------------------------------- /yolov5/utils/flask_rest_api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/flask_rest_api/README.md -------------------------------------------------------------------------------- /yolov5/utils/flask_rest_api/example_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/flask_rest_api/example_request.py -------------------------------------------------------------------------------- /yolov5/utils/flask_rest_api/restapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/flask_rest_api/restapi.py -------------------------------------------------------------------------------- /yolov5/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/general.py -------------------------------------------------------------------------------- /yolov5/utils/google_app_engine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/google_app_engine/Dockerfile -------------------------------------------------------------------------------- /yolov5/utils/google_app_engine/additional_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/google_app_engine/additional_requirements.txt -------------------------------------------------------------------------------- /yolov5/utils/google_app_engine/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/google_app_engine/app.yaml -------------------------------------------------------------------------------- /yolov5/utils/loggers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loggers/__init__.py -------------------------------------------------------------------------------- /yolov5/utils/loggers/wandb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loggers/wandb/README.md -------------------------------------------------------------------------------- /yolov5/utils/loggers/wandb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yolov5/utils/loggers/wandb/log_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loggers/wandb/log_dataset.py -------------------------------------------------------------------------------- /yolov5/utils/loggers/wandb/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loggers/wandb/sweep.py -------------------------------------------------------------------------------- /yolov5/utils/loggers/wandb/sweep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loggers/wandb/sweep.yaml -------------------------------------------------------------------------------- /yolov5/utils/loggers/wandb/wandb_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loggers/wandb/wandb_utils.py -------------------------------------------------------------------------------- /yolov5/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/loss.py -------------------------------------------------------------------------------- /yolov5/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/metrics.py -------------------------------------------------------------------------------- /yolov5/utils/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/plots.py -------------------------------------------------------------------------------- /yolov5/utils/torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chequanghuy/Character-Time-series-Matching/HEAD/yolov5/utils/torch_utils.py --------------------------------------------------------------------------------