├── LICENSE ├── Others ├── README.md ├── __init__.py ├── lsd12 │ ├── __init__.py │ ├── check_dataset.py │ ├── format_input.py │ └── label_config.py ├── satellite │ ├── __init__.py │ ├── bbox_cluster.py │ ├── clip_video.py │ ├── prepare_trainsamples.py │ └── process.py ├── vedia │ ├── __init__.py │ ├── convert2voc.py │ └── show.py └── voc │ ├── __init__.py │ └── process_pascal_voc.py ├── README.md ├── checks ├── __init__.py ├── brain │ ├── __init__.py │ ├── ssd │ │ ├── __init__.py │ │ └── check_ssd_model.py │ └── yolo │ │ ├── __init__.py │ │ └── check_yolo_model.py ├── datasets │ ├── __init__.py │ └── check_ssd_dataset.py └── observe │ ├── __init__.py │ ├── check_average_blur.py │ ├── check_background.py │ ├── check_color.py │ ├── check_gaussian_blur.py │ ├── check_median_blur.py │ └── check_parameters.py ├── conf ├── dilated_ssd_train.cfg ├── ssd_train.cfg ├── ssd_train_512.cfg ├── ssd_train_server.cfg ├── yolo_train.cfg ├── yolo_train_server.cfg ├── yolo_unet_train.cfg └── yolo_unet_train_server.cfg ├── datum ├── README.md ├── __init__.py ├── meta │ ├── __init__.py │ └── dataset.py ├── models │ ├── __init__.py │ ├── ssd │ │ ├── __init__.py │ │ ├── box_encoder.py │ │ └── ssd_dataset.py │ └── yolo │ │ ├── __init__.py │ │ ├── yolo_batch_dataset.py │ │ └── yolo_dataset.py └── utils │ ├── __init__.py │ ├── process_config.py │ └── tools.py ├── eagle ├── README.md ├── __init__.py ├── brain │ ├── __init__.py │ ├── rotation │ │ ├── __init__.py │ │ └── yolo │ │ │ ├── __init__.py │ │ │ ├── net.py │ │ │ └── rotation_tiny_net.py │ ├── solver │ │ ├── __init__.py │ │ ├── solver.py │ │ ├── ssd_solver.py │ │ ├── yolo_solver.py │ │ └── yolo_u_solver.py │ ├── ssd │ │ ├── __init__.py │ │ ├── anchor_boxes.py │ │ ├── box_encode_decode_utils.py │ │ ├── loss.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── components.py │ │ │ ├── net.py │ │ │ ├── squeezenet_300.py │ │ │ ├── squeezenet_512.py │ │ │ ├── vgg.py │ │ │ └── vgg_dilated.py │ │ └── normalization.py │ └── yolo │ │ ├── __init__.py │ │ ├── net.py │ │ ├── yolo_net.py │ │ ├── yolo_tiny_net.py │ │ └── yolo_u_net.py ├── observe │ ├── __init__.py │ ├── augmentors │ │ ├── __init__.py │ │ ├── arithmetic.py │ │ ├── blur.py │ │ ├── color.py │ │ └── flip.py │ └── base │ │ ├── __init__.py │ │ ├── basebatch.py │ │ ├── basetype.py │ │ └── meta.py ├── parameter.py └── utils.py ├── examples ├── __init__.py ├── ssd │ ├── __init__.py │ ├── squeezenet_300_trainer.py │ ├── squeezenet_512_trainer.py │ └── vgg_trainer.py ├── unet │ ├── __init__.py │ ├── predict.py │ └── train.py └── yolo │ ├── __init__.py │ └── train.py └── results ├── README.md └── test_res_image ├── loss1.png ├── loss2.png └── loss3.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/LICENSE -------------------------------------------------------------------------------- /Others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/README.md -------------------------------------------------------------------------------- /Others/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/__init__.py -------------------------------------------------------------------------------- /Others/lsd12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/lsd12/__init__.py -------------------------------------------------------------------------------- /Others/lsd12/check_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/lsd12/check_dataset.py -------------------------------------------------------------------------------- /Others/lsd12/format_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/lsd12/format_input.py -------------------------------------------------------------------------------- /Others/lsd12/label_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/lsd12/label_config.py -------------------------------------------------------------------------------- /Others/satellite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/satellite/__init__.py -------------------------------------------------------------------------------- /Others/satellite/bbox_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/satellite/bbox_cluster.py -------------------------------------------------------------------------------- /Others/satellite/clip_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/satellite/clip_video.py -------------------------------------------------------------------------------- /Others/satellite/prepare_trainsamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/satellite/prepare_trainsamples.py -------------------------------------------------------------------------------- /Others/satellite/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/satellite/process.py -------------------------------------------------------------------------------- /Others/vedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/vedia/__init__.py -------------------------------------------------------------------------------- /Others/vedia/convert2voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/vedia/convert2voc.py -------------------------------------------------------------------------------- /Others/vedia/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/vedia/show.py -------------------------------------------------------------------------------- /Others/voc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/voc/__init__.py -------------------------------------------------------------------------------- /Others/voc/process_pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/Others/voc/process_pascal_voc.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/README.md -------------------------------------------------------------------------------- /checks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/__init__.py -------------------------------------------------------------------------------- /checks/brain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/brain/__init__.py -------------------------------------------------------------------------------- /checks/brain/ssd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/brain/ssd/__init__.py -------------------------------------------------------------------------------- /checks/brain/ssd/check_ssd_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/brain/ssd/check_ssd_model.py -------------------------------------------------------------------------------- /checks/brain/yolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/brain/yolo/__init__.py -------------------------------------------------------------------------------- /checks/brain/yolo/check_yolo_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/brain/yolo/check_yolo_model.py -------------------------------------------------------------------------------- /checks/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/datasets/__init__.py -------------------------------------------------------------------------------- /checks/datasets/check_ssd_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/datasets/check_ssd_dataset.py -------------------------------------------------------------------------------- /checks/observe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/__init__.py -------------------------------------------------------------------------------- /checks/observe/check_average_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/check_average_blur.py -------------------------------------------------------------------------------- /checks/observe/check_background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/check_background.py -------------------------------------------------------------------------------- /checks/observe/check_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/check_color.py -------------------------------------------------------------------------------- /checks/observe/check_gaussian_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/check_gaussian_blur.py -------------------------------------------------------------------------------- /checks/observe/check_median_blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/check_median_blur.py -------------------------------------------------------------------------------- /checks/observe/check_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/checks/observe/check_parameters.py -------------------------------------------------------------------------------- /conf/dilated_ssd_train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/dilated_ssd_train.cfg -------------------------------------------------------------------------------- /conf/ssd_train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/ssd_train.cfg -------------------------------------------------------------------------------- /conf/ssd_train_512.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/ssd_train_512.cfg -------------------------------------------------------------------------------- /conf/ssd_train_server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/ssd_train_server.cfg -------------------------------------------------------------------------------- /conf/yolo_train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/yolo_train.cfg -------------------------------------------------------------------------------- /conf/yolo_train_server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/yolo_train_server.cfg -------------------------------------------------------------------------------- /conf/yolo_unet_train.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/yolo_unet_train.cfg -------------------------------------------------------------------------------- /conf/yolo_unet_train_server.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/conf/yolo_unet_train_server.cfg -------------------------------------------------------------------------------- /datum/README.md: -------------------------------------------------------------------------------- 1 | ## DataSets 2 | 3 | 主要是编写统一的数据集处理逻辑。 4 | 5 | ### 目录结构 6 | 7 | ### 配置信息 8 | -------------------------------------------------------------------------------- /datum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/__init__.py -------------------------------------------------------------------------------- /datum/meta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/meta/__init__.py -------------------------------------------------------------------------------- /datum/meta/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/meta/dataset.py -------------------------------------------------------------------------------- /datum/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/__init__.py -------------------------------------------------------------------------------- /datum/models/ssd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/ssd/__init__.py -------------------------------------------------------------------------------- /datum/models/ssd/box_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/ssd/box_encoder.py -------------------------------------------------------------------------------- /datum/models/ssd/ssd_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/ssd/ssd_dataset.py -------------------------------------------------------------------------------- /datum/models/yolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/yolo/__init__.py -------------------------------------------------------------------------------- /datum/models/yolo/yolo_batch_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/yolo/yolo_batch_dataset.py -------------------------------------------------------------------------------- /datum/models/yolo/yolo_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/models/yolo/yolo_dataset.py -------------------------------------------------------------------------------- /datum/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/utils/__init__.py -------------------------------------------------------------------------------- /datum/utils/process_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/utils/process_config.py -------------------------------------------------------------------------------- /datum/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/datum/utils/tools.py -------------------------------------------------------------------------------- /eagle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/README.md -------------------------------------------------------------------------------- /eagle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/__init__.py -------------------------------------------------------------------------------- /eagle/brain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/__init__.py -------------------------------------------------------------------------------- /eagle/brain/rotation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/rotation/__init__.py -------------------------------------------------------------------------------- /eagle/brain/rotation/yolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/rotation/yolo/__init__.py -------------------------------------------------------------------------------- /eagle/brain/rotation/yolo/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/rotation/yolo/net.py -------------------------------------------------------------------------------- /eagle/brain/rotation/yolo/rotation_tiny_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/rotation/yolo/rotation_tiny_net.py -------------------------------------------------------------------------------- /eagle/brain/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/solver/__init__.py -------------------------------------------------------------------------------- /eagle/brain/solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/solver/solver.py -------------------------------------------------------------------------------- /eagle/brain/solver/ssd_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/solver/ssd_solver.py -------------------------------------------------------------------------------- /eagle/brain/solver/yolo_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/solver/yolo_solver.py -------------------------------------------------------------------------------- /eagle/brain/solver/yolo_u_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/solver/yolo_u_solver.py -------------------------------------------------------------------------------- /eagle/brain/ssd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/__init__.py -------------------------------------------------------------------------------- /eagle/brain/ssd/anchor_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/anchor_boxes.py -------------------------------------------------------------------------------- /eagle/brain/ssd/box_encode_decode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/box_encode_decode_utils.py -------------------------------------------------------------------------------- /eagle/brain/ssd/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/loss.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/__init__.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/components.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/net.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/squeezenet_300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/squeezenet_300.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/squeezenet_512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/squeezenet_512.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/vgg.py -------------------------------------------------------------------------------- /eagle/brain/ssd/models/vgg_dilated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/models/vgg_dilated.py -------------------------------------------------------------------------------- /eagle/brain/ssd/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/ssd/normalization.py -------------------------------------------------------------------------------- /eagle/brain/yolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/yolo/__init__.py -------------------------------------------------------------------------------- /eagle/brain/yolo/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/yolo/net.py -------------------------------------------------------------------------------- /eagle/brain/yolo/yolo_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/yolo/yolo_net.py -------------------------------------------------------------------------------- /eagle/brain/yolo/yolo_tiny_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/yolo/yolo_tiny_net.py -------------------------------------------------------------------------------- /eagle/brain/yolo/yolo_u_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/brain/yolo/yolo_u_net.py -------------------------------------------------------------------------------- /eagle/observe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/__init__.py -------------------------------------------------------------------------------- /eagle/observe/augmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/augmentors/__init__.py -------------------------------------------------------------------------------- /eagle/observe/augmentors/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/augmentors/arithmetic.py -------------------------------------------------------------------------------- /eagle/observe/augmentors/blur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/augmentors/blur.py -------------------------------------------------------------------------------- /eagle/observe/augmentors/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/augmentors/color.py -------------------------------------------------------------------------------- /eagle/observe/augmentors/flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/augmentors/flip.py -------------------------------------------------------------------------------- /eagle/observe/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/base/__init__.py -------------------------------------------------------------------------------- /eagle/observe/base/basebatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/base/basebatch.py -------------------------------------------------------------------------------- /eagle/observe/base/basetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/base/basetype.py -------------------------------------------------------------------------------- /eagle/observe/base/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/observe/base/meta.py -------------------------------------------------------------------------------- /eagle/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/parameter.py -------------------------------------------------------------------------------- /eagle/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/eagle/utils.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/ssd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/ssd/__init__.py -------------------------------------------------------------------------------- /examples/ssd/squeezenet_300_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/ssd/squeezenet_300_trainer.py -------------------------------------------------------------------------------- /examples/ssd/squeezenet_512_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/ssd/squeezenet_512_trainer.py -------------------------------------------------------------------------------- /examples/ssd/vgg_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/ssd/vgg_trainer.py -------------------------------------------------------------------------------- /examples/unet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/unet/__init__.py -------------------------------------------------------------------------------- /examples/unet/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/unet/predict.py -------------------------------------------------------------------------------- /examples/unet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/unet/train.py -------------------------------------------------------------------------------- /examples/yolo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/yolo/__init__.py -------------------------------------------------------------------------------- /examples/yolo/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/examples/yolo/train.py -------------------------------------------------------------------------------- /results/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/results/README.md -------------------------------------------------------------------------------- /results/test_res_image/loss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/results/test_res_image/loss1.png -------------------------------------------------------------------------------- /results/test_res_image/loss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/results/test_res_image/loss2.png -------------------------------------------------------------------------------- /results/test_res_image/loss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiyang882/DL.EyeSight/HEAD/results/test_res_image/loss3.png --------------------------------------------------------------------------------