author int64 658 755k | date stringdate 2012-06-12 08:34:29 2024-07-22 14:51:21 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods listlengths 1 16 | language stringclasses 20
values | license stringclasses 3
values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
499,333 | 03.01.2020 13:41:39 | -28,800 | 1e6090d8910beb569dd1ed5baa45c8ab59feec7d | refine doc | [
{
"change_type": "MODIFY",
"old_path": "tools/cpp_demo.yml",
"new_path": "tools/cpp_demo.yml",
"diff": "-# demo for tensorrt_infer.py\n+# demo for cpp_infer.py\nmode: trt_fp32 # trt_fp32, trt_fp16, trt_int8, fluid\narch: RCNN # YOLO, SSD, RCNN, RetinaNet\nmin_subgraph_size: 20 # need 3 for YOLO arch... | Python | Apache License 2.0 | paddlepaddle/paddledetection | refine doc (#163) |
499,313 | 07.01.2020 13:08:02 | -28,800 | 779cdeb76fab5025b7e15230c528a761276fae40 | fix use_fine_grained_loss eval in train | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/architectures/yolov3.py",
"new_path": "ppdet/modeling/architectures/yolov3.py",
"diff": "@@ -135,7 +135,10 @@ class YOLOv3(object):\nuse_dataloader=True,\niterable=False):\ninputs_def = self._inputs_def(image_shape, num_max_boxes)\n- if self.use... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix use_fine_grained_loss eval in train (#167) |
499,333 | 09.01.2020 14:38:50 | -28,800 | 256c2c9c063d5ae1370ab8aad8f643c0d862962b | fix feed type in cpp_infer.py | [
{
"change_type": "MODIFY",
"old_path": "tools/cpp_infer.py",
"new_path": "tools/cpp_infer.py",
"diff": "@@ -220,7 +220,7 @@ def infer():\nfor i in range(10):\nif conf['use_python_inference']:\nouts = exe.run(infer_prog,\n- feed=[data_dict],\n+ feed=data_dict,\nfetch_list=fetch_targets,\nreturn_numpy... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix feed type in cpp_infer.py (#170) |
499,313 | 15.01.2020 13:01:00 | -28,800 | 1e395f8abdcf9c3d13e87de0258583def32c9f8b | disable multiprocess on Windows | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/parallel_map.py",
"new_path": "ppdet/data/parallel_map.py",
"diff": "@@ -65,6 +65,10 @@ class ParallelMap(object):\nself._worker_num = worker_num\nself._bufsize = bufsize\nself._use_process = use_process\n+ if self._use_process and sys.platform == \... | Python | Apache License 2.0 | paddlepaddle/paddledetection | disable multiprocess on Windows (#181) |
499,385 | 20.01.2020 11:25:22 | -28,800 | cf872f91b4c9f94f3f0d3959764db6ee79a0111b | Remove the un-used code | [
{
"change_type": "DELETE",
"old_path": "configs2/faster_rcnn_r50_1x.yml",
"new_path": null,
"diff": "-architecture: FasterRCNN\n-use_gpu: true\n-max_iters: 180000\n-log_smooth_window: 20\n-save_dir: output\n-snapshot_iter: 10000\n-pretrain_weights: https://paddle-imagenet-models-name.bj.bcebos.com/R... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Remove the un-used code (#194) |
499,313 | 06.02.2020 17:37:17 | -28,800 | fcfdbd2e191a9e16953b10e88ce0b87e4df4aaef | fix test_architectures.py | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/tests/test_architectures.py",
"new_path": "ppdet/modeling/tests/test_architectures.py",
"diff": "@@ -23,7 +23,6 @@ import paddle.fluid as fluid\nfrom ppdet.modeling.tests.decorator_helper import prog_scope\nfrom ppdet.core.workspace import load_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix test_architectures.py (#213) |
499,385 | 10.02.2020 11:49:39 | -28,800 | 4d096b4f06b8825812af892b09bb1cea2cd632c3 | Remove is_difficult field in SSD config for COCO dataset | [
{
"change_type": "MODIFY",
"old_path": "configs/ssd/ssd_vgg16_300.yml",
"new_path": "configs/ssd/ssd_vgg16_300.yml",
"diff": "@@ -100,7 +100,7 @@ TrainReader:\nEvalReader:\ninputs_def:\nimage_shape: [3, 300, 300]\n- fields: ['image', 'gt_bbox', 'gt_class', 'im_shape', 'im_id', 'is_difficult']\n+ fie... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Remove is_difficult field in SSD config for COCO dataset (#221) |
499,385 | 10.02.2020 18:02:45 | -28,800 | 8dae8b5e6189b83210f601851ace3fb8c94859fb | Change min_subgraph_size to 40 in tools/cpp_demo.yml | [
{
"change_type": "MODIFY",
"old_path": "tools/cpp_demo.yml",
"new_path": "tools/cpp_demo.yml",
"diff": "mode: trt_fp32 # trt_fp32, trt_fp16, trt_int8, fluid\narch: RCNN # YOLO, SSD, RCNN, RetinaNet\n-min_subgraph_size: 20 # need 3 for YOLO arch\n+min_subgraph_size: 40 # need 3 for YOLO arch\nuse_pyt... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Change min_subgraph_size to 40 in tools/cpp_demo.yml (#222) |
499,313 | 11.02.2020 17:07:00 | -28,800 | 211aaf02d53f9dee21e70ebf001525f002ebf517 | fix prune resume | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/prune.py",
"new_path": "slim/prune/prune.py",
"diff": "@@ -171,10 +171,7 @@ def main():\nfuse_bn = getattr(model.backbone, 'norm_type', None) == 'affine_channel'\nstart_iter = 0\n- if FLAGS.resume_checkpoint:\n- checkpoint.load_checkpoint(exe, train... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix prune resume (#223) |
499,385 | 11.02.2020 22:52:30 | -28,800 | 34250821cea03b5261436d109224767cdaf4cba2 | Fix class_num in cascade_rcnn_dcnv2_se154_vd_fpn_gn_cas.yml | [
{
"change_type": "MODIFY",
"old_path": "configs/obj365/cascade_rcnn_dcnv2_se154_vd_fpn_gn_cas.yml",
"new_path": "configs/obj365/cascade_rcnn_dcnv2_se154_vd_fpn_gn_cas.yml",
"diff": "@@ -8,7 +8,7 @@ save_dir: output\npretrain_weights: https://paddlemodels.bj.bcebos.com/object_detection/cascade_mask_r... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix class_num in cascade_rcnn_dcnv2_se154_vd_fpn_gn_cas.yml (#224) |
499,333 | 13.02.2020 15:17:11 | -28,800 | 59b704957426a2e87148c64d0bbef7154224afae | fix cpp_infer in SSD | [
{
"change_type": "MODIFY",
"old_path": "tools/cpp_infer.py",
"new_path": "tools/cpp_infer.py",
"diff": "@@ -78,7 +78,9 @@ def get_extra_info(im, arch, shape, scale):\nlogger.info('Extra info: im_size')\ninfo.append(im_size)\nelif 'SSD' in arch:\n- pass\n+ im_shape = np.array([shape[:2]]).astype('int... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cpp_infer in SSD (#231) |
499,300 | 13.02.2020 15:23:08 | -28,800 | 2835d5ad5649bcfbbaf5269ea60d02613de4c51a | Upgrade paddle API used in mixed precision training | [
{
"change_type": "MODIFY",
"old_path": "ppdet/experimental/mixed_precision.py",
"new_path": "ppdet/experimental/mixed_precision.py",
"diff": "@@ -129,30 +129,27 @@ class DynamicLossScale(LossScale):\ndef increment(self):\nenough_steps = layers.less_than(self.increment_every,\nself.good_steps + 1)\n-... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Upgrade paddle API used in mixed precision training (#227) |
499,300 | 13.02.2020 15:23:37 | -28,800 | 1a30667dec205696e0b04d2614710e63faaaef67 | Clean up pyreader vestiges | [
{
"change_type": "MODIFY",
"old_path": "demo/mask_rcnn_demo.ipynb",
"new_path": "demo/mask_rcnn_demo.ipynb",
"diff": "\"with fluid.program_guard(infer_prog, startup_prog):\\n\",\n\" with fluid.unique_name.guard():\\n\",\n\" feed_vars = {\\n\",\n- \" var['name']: fluid.layers.data(\\n\",\n+ \" var['n... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Clean up pyreader vestiges (#228) |
499,306 | 13.02.2020 17:02:05 | -28,800 | b70a0f9b2b21aa121f15cd731f49f49d9aa80ef0 | fix slim distillation load params | [
{
"change_type": "MODIFY",
"old_path": "slim/distillation/distill.py",
"new_path": "slim/distillation/distill.py",
"diff": "@@ -156,26 +156,7 @@ def main():\ntrain_fetches = model.train(train_feed_vars)\nloss = train_fetches['loss']\n- fuse_bn = getattr(model.backbone, 'norm_type', None) == 'affine_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix slim distillation load params (#233) |
499,333 | 13.02.2020 20:54:51 | -28,800 | 2ae28aaf7fd1fec5f99d7ec07c36a6df6aa3d12b | refine resize in YOLO & SSD | [
{
"change_type": "MODIFY",
"old_path": "tools/cpp_infer.py",
"new_path": "tools/cpp_infer.py",
"diff": "@@ -108,10 +108,11 @@ class Resize(object):\nself.max_size = max_size\nself.interp = interp\n- def __call__(self, im):\n+ def __call__(self, im, arch):\norigin_shape = im.shape[:2]\nim_c = im.shap... | Python | Apache License 2.0 | paddlepaddle/paddledetection | refine resize in YOLO & SSD (#234) |
499,400 | 13.02.2020 21:15:08 | -28,800 | f92927ef63ea0813aba780181bd5d2d782f64669 | Remove unused file from pruning demo. | [
{
"change_type": "DELETE",
"old_path": "slim/prune/compress.py",
"new_path": null,
"diff": "-# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.\n-#\n-# Licensed under the Apache License, Version 2.0 (the \"License\");\n-# you may not use this file except in compliance with the License.\... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Remove unused file from pruning demo. (#225) |
499,306 | 19.02.2020 13:58:36 | -28,800 | dbdbff1b225c7647f0c17083df17b322f30b54c6 | fix distill issue | [
{
"change_type": "MODIFY",
"old_path": "slim/distillation/distill.py",
"new_path": "slim/distillation/distill.py",
"diff": "@@ -227,6 +227,7 @@ def main():\nteacher_program = teacher_program.clone(for_test=True)\ncfg = load_config(FLAGS.config)\n+ merge_config(FLAGS.opt)\ndata_name_map = {\n'target0... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix distill issue (#247) |
499,313 | 21.02.2020 10:31:50 | -28,800 | 029a0ec00d3bfb45c5d67f4ec463ec22ef25a871 | kill process group when main process exit | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/parallel_map.py",
"new_path": "ppdet/data/parallel_map.py",
"diff": "@@ -19,6 +19,7 @@ from __future__ import absolute_import\nfrom __future__ import division\nfrom __future__ import print_function\n+import os\nimport sys\nimport six\nif six.PY3:\n@... | Python | Apache License 2.0 | paddlepaddle/paddledetection | kill process group when main process exit (#136) |
499,313 | 21.02.2020 12:21:04 | -28,800 | 61a8b0e700817353594cf31161801c45243244f9 | fix voc eval | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/map_utils.py",
"new_path": "ppdet/utils/map_utils.py",
"diff": "@@ -145,7 +145,9 @@ class DetectionMAP(object):\nvalid_cnt = 0\nfor score_pos, count in zip(self.class_score_poss,\nself.class_gt_counts):\n- if count == 0 or len(score_pos) == 0:\n+ i... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix voc eval (#249) |
499,323 | 21.02.2020 21:05:43 | 21,600 | 3849c173a7b194ae15c2716e6a1d42e4e8071b79 | Fix load checkpoint | [
{
"change_type": "MODIFY",
"old_path": "slim/quantization/export_model.py",
"new_path": "slim/quantization/export_model.py",
"diff": "@@ -21,7 +21,6 @@ import sys\nfrom paddle import fluid\nfrom ppdet.core.workspace import load_config, merge_config, create\n-from ppdet.modeling.model_input import cr... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix load checkpoint (#250) |
499,304 | 24.02.2020 12:48:20 | -28,800 | de2589ea425e037312ac16c7a4695235c1acc2fb | Fix softlink | [
{
"change_type": "DELETE",
"old_path": "docs/advanced_tutorials/slim/DISTILLATION.md",
"new_path": null,
"diff": "-../../../slim/distillation/README.md\n\\ No newline at end of file\n"
},
{
"change_type": "MODIFY",
"old_path": "docs/advanced_tutorials/slim/MODEL_ZOO.md",
"new_path": ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix softlink (#256) |
499,323 | 25.02.2020 07:25:31 | 21,600 | 17f7cbfa8ea46a2e044d48b3c0603bfea49b33a2 | fix run command for windows | [
{
"change_type": "MODIFY",
"old_path": "slim/quantization/README.md",
"new_path": "slim/quantization/README.md",
"diff": "@@ -63,7 +63,7 @@ python slim/quantization/train.py --not_quant_pattern yolo_output \\\n-o max_iters=30000 \\\nsave_dir=./output/mobilenetv1 \\\nLearningRate.base_lr=0.0001 \\\n-... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix run command for windows (#261) |
499,333 | 27.02.2020 14:21:48 | -28,800 | 021a13c777bc73e79442b2a0b25a3ee9f12f13d3 | update reader config | [
{
"change_type": "MODIFY",
"old_path": "configs/dcn/cascade_mask_rcnn_dcnv2_se154_vd_fpn_gn_s1x.yml",
"new_path": "configs/dcn/cascade_mask_rcnn_dcnv2_se154_vd_fpn_gn_s1x.yml",
"diff": "@@ -235,7 +235,6 @@ EvalReader:\nTestReader:\nbatch_size: 1\ninputs_def:\n- image_shape: [3,800,1333]\nfields: ['i... | Python | Apache License 2.0 | paddlepaddle/paddledetection | update reader config (#267) |
499,300 | 27.02.2020 19:02:33 | -28,800 | eb7b0ddd7dc6901357c8fb9e92c9ef7bafd0b607 | Force `cudnn` backend for depthwise convs when fp16 is enabled | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/backbones/blazenet.py",
"new_path": "ppdet/modeling/backbones/blazenet.py",
"diff": "@@ -19,6 +19,7 @@ from __future__ import print_function\nfrom paddle import fluid\nfrom paddle.fluid.param_attr import ParamAttr\n+from ppdet.experimental impor... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Force `cudnn` backend for depthwise convs when fp16 is enabled (#270) |
499,333 | 04.03.2020 12:47:09 | -28,800 | 9f76868da1ca90bf196b99764ff39b8ca88cacb9 | fix infer on windows | [
{
"change_type": "MODIFY",
"old_path": "tools/infer.py",
"new_path": "tools/infer.py",
"diff": "@@ -74,20 +74,20 @@ def get_test_images(infer_dir, infer_img):\n\"{} is not a file\".format(infer_img)\nassert infer_dir is None or os.path.isdir(infer_dir), \\\n\"{} is not a directory\".format(infer_dir... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix infer on windows (#300) |
499,369 | 12.03.2020 17:53:24 | -28,800 | b2bbca3311fc6ecfb87a2243b79db208f736bc72 | refine pedestrian_yolov3_darknet.yml and vehicle_yolov3_darknet.yml in contrib | [
{
"change_type": "MODIFY",
"old_path": "contrib/PedestrianDetection/pedestrian_yolov3_darknet.yml",
"new_path": "contrib/PedestrianDetection/pedestrian_yolov3_darknet.yml",
"diff": "architecture: YOLOv3\n-train_feed: YoloTrainFeed\n-eval_feed: YoloEvalFeed\n-test_feed: YoloTestFeed\nuse_gpu: true\nm... | Python | Apache License 2.0 | paddlepaddle/paddledetection | refine pedestrian_yolov3_darknet.yml and vehicle_yolov3_darknet.yml in contrib (#323) |
499,313 | 16.03.2020 10:39:27 | -28,800 | dfddd5a020d863f25242ca0e3ca82d92db810fe5 | fix yolo configs | [
{
"change_type": "MODIFY",
"old_path": "configs/yolov3_darknet.yml",
"new_path": "configs/yolov3_darknet.yml",
"diff": "@@ -37,7 +37,7 @@ YOLOv3Head:\nYOLOv3Loss:\nbatch_size: 8\nignore_thresh: 0.7\n- label_smooth: false\n+ label_smooth: true\nLearningRate:\nbase_lr: 0.001\n"
},
{
"change_ty... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix yolo configs (#331) |
499,306 | 17.03.2020 10:18:39 | -28,800 | 2d385d258381392aea906f35c1dc00ea02e654b6 | save inference model in slim/distillation | [
{
"change_type": "MODIFY",
"old_path": "slim/distillation/distill.py",
"new_path": "slim/distillation/distill.py",
"diff": "@@ -335,6 +335,12 @@ def main():\ncheckpoint.save(exe,\nfluid.default_main_program(),\nos.path.join(save_dir, save_name))\n+ if FLAGS.save_inference:\n+ feeded_var_names = ['im... | Python | Apache License 2.0 | paddlepaddle/paddledetection | save inference model in slim/distillation (#339) |
499,308 | 17.03.2020 16:46:56 | -28,800 | b18151e630ab9a5853d7067dce4d68b901ac4da0 | add ce for PaddleDetection | [
{
"change_type": "MODIFY",
"old_path": "tools/train.py",
"new_path": "tools/train.py",
"diff": "@@ -19,6 +19,7 @@ from __future__ import print_function\nimport os\nimport time\nimport numpy as np\n+import random\nimport datetime\nfrom collections import deque\n@@ -60,11 +61,14 @@ def main():\nFLAGS.... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add ce for PaddleDetection (#343) |
499,313 | 18.03.2020 11:14:57 | -28,800 | 1455801e3f7ab1b78a444f2f112c2b1b47da8dfe | add YOLOv3Loss.batch_size comments | [
{
"change_type": "MODIFY",
"old_path": "configs/dcn/yolov3_r50vd_dcn.yml",
"new_path": "configs/dcn/yolov3_r50vd_dcn.yml",
"diff": "@@ -40,6 +40,10 @@ YOLOv3Head:\nscore_threshold: 0.01\nYOLOv3Loss:\n+ # batch_size here is only used for fine grained loss, not used\n+ # for training batch_size settin... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add YOLOv3Loss.batch_size comments (#347) |
499,400 | 20.03.2020 15:49:30 | -28,800 | cc84b7abfb32df40681fb2823900e1655d2e66da | Fix sensitivy in slim demo. | [
{
"change_type": "MODIFY",
"old_path": "slim/sensitive/sensitive.py",
"new_path": "slim/sensitive/sensitive.py",
"diff": "@@ -82,7 +82,6 @@ def main():\nfeed_vars, eval_loader = model.build_inputs(**inputs_def)\nfetches = model.eval(feed_vars)\neval_prog = eval_prog.clone(True)\n-\nif FLAGS.print_pa... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix sensitivy in slim demo. (#365) |
499,313 | 23.03.2020 11:37:54 | -28,800 | 366eb59c9ff75d8cab093f0449ead860e0b75649 | add prune export_model | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/eval.py",
"new_path": "slim/prune/eval.py",
"diff": "@@ -176,7 +176,7 @@ def main():\n# load model\nexe.run(startup_prog)\nif 'weights' in cfg:\n- checkpoint.load_params(exe, eval_prog, cfg.weights)\n+ checkpoint.load_checkpoint(exe, eval_prog, cfg.... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add prune export_model (#378) |
499,400 | 24.03.2020 11:34:10 | -28,800 | 3146ebe0f022f7e13c75fe481a748b610aefa7c3 | Fix loading checkpoint in eval script of pruning demo. | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/eval.py",
"new_path": "slim/prune/eval.py",
"diff": "@@ -86,6 +86,7 @@ def main():\nfetches = model.eval(feed_vars, multi_scale_test)\neval_prog = eval_prog.clone(True)\n+ exe.run(startup_prog)\nreader = create_reader(cfg.EvalReader)\nloader.set_sam... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix loading checkpoint in eval script of pruning demo. (#391) |
499,313 | 31.03.2020 14:35:22 | -28,800 | ca199f73d5d0fb8bc7b871387106fdd656b189e6 | fix downsample | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/architectures/yolov3.py",
"new_path": "ppdet/modeling/architectures/yolov3.py",
"diff": "@@ -121,7 +121,7 @@ class YOLOv3(object):\n-2] // downsample if image_shape[-2] else None\ntargets_def[k]['shape'][4] = image_shape[\n-1] // downsample if i... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix downsample (#420) |
499,333 | 02.04.2020 21:23:29 | -28,800 | f6d7d9a3a9aa2b350114d2dd300a486b307f905b | refine mask eval | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/coco_eval.py",
"new_path": "ppdet/utils/coco_eval.py",
"diff": "@@ -105,7 +105,35 @@ def mask_eval(results, anno_file, outfile, resolution, thresh_binarize=0.5):\ncoco_gt = COCO(anno_file)\nclsid2catid = {i + 1: v for i, v in enumerate(coco_gt.getC... | Python | Apache License 2.0 | paddlepaddle/paddledetection | refine mask eval (#430) |
499,313 | 04.04.2020 12:21:40 | -28,800 | 2866aa3da6d48e42c3b599610ecbbf3159e29086 | fix sensitive import | [
{
"change_type": "MODIFY",
"old_path": "slim/sensitive/sensitive.py",
"new_path": "slim/sensitive/sensitive.py",
"diff": "@@ -38,7 +38,6 @@ set_paddle_flags(\nfrom paddle import fluid\nfrom ppdet.experimental import mixed_precision_context\nfrom ppdet.core.workspace import load_config, merge_config,... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix sensitive import (#441) |
499,304 | 04.04.2020 14:22:42 | -28,800 | c06f1ea03684d5a938c095573011864269013985 | add mobilenetvs & ssdlite | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/backbones/__init__.py",
"new_path": "ppdet/modeling/backbones/__init__.py",
"diff": "@@ -18,6 +18,7 @@ from . import resnet\nfrom . import resnext\nfrom . import darknet\nfrom . import mobilenet\n+from . import mobilenet_v3\nfrom . import senet\... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add mobilenetvs & ssdlite (#439) |
499,313 | 07.04.2020 12:38:37 | -28,800 | 365082f2100d95e52c4a0d1164aa6c29f2558ff5 | fix killpg | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/parallel_map.py",
"new_path": "ppdet/data/parallel_map.py",
"diff": "@@ -35,6 +35,8 @@ import traceback\nlogger = logging.getLogger(__name__)\n+worker_set = set()\n+\nclass EndSignal(object):\n\"\"\" signal used to notify worker to exit\n@@ -120,6 +... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix killpg (#450) |
499,406 | 08.04.2020 13:45:52 | -28,800 | ed24ab2906f5120296ae029a15240276a299926d | add profiler tools | [
{
"change_type": "MODIFY",
"old_path": "tools/train.py",
"new_path": "tools/train.py",
"diff": "@@ -22,6 +22,7 @@ import numpy as np\nimport random\nimport datetime\nfrom collections import deque\n+from paddle.fluid import profiler\ndef set_paddle_flags(**kwargs):\n@@ -256,6 +257,13 @@ def main():\n... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add profiler tools (#377) |
499,313 | 08.04.2020 19:21:32 | -28,800 | 063e9b206979d1500dd0c68af6f4d3ac327a0e64 | fix threads not exit on ctrl+c | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/parallel_map.py",
"new_path": "ppdet/data/parallel_map.py",
"diff": "@@ -35,6 +35,7 @@ import traceback\nlogger = logging.getLogger(__name__)\n+main_pid = os.getpid()\nworker_set = set()\n@@ -131,6 +132,7 @@ class ParallelMap(object):\nself._consume... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix threads not exit on ctrl+c (#463) |
499,313 | 10.04.2020 10:54:41 | -28,800 | 3fa01f104d627b7d7b1e411fe8391479204e569d | fix yolov3_enhance_reader EvalReader | [
{
"change_type": "MODIFY",
"old_path": "configs/dcn/yolov3_enhance_reader.yml",
"new_path": "configs/dcn/yolov3_enhance_reader.yml",
"diff": "@@ -70,6 +70,8 @@ EvalReader:\nstd: [0.229, 0.224, 0.225]\nis_scale: False\nis_channel_first: false\n+ - !PadBox\n+ num_max_boxes: 50\n- !Permute\nto_bgr: fal... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix yolov3_enhance_reader EvalReader (#473) |
499,304 | 11.04.2020 11:37:29 | -28,800 | 763a8f2dff407fd2d560b41c76354712ec056748 | fix windows python path | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/INSTALL.md",
"new_path": "docs/tutorials/INSTALL.md",
"diff": "@@ -86,14 +86,21 @@ Required python packages are specified in [requirements.txt](https://github.com/\npip install -r requirements.txt\n```\n-**Make sure the tests pass:**\n+**Specify... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix windows python path (#480) |
499,333 | 14.04.2020 16:04:43 | -28,800 | d5a5fa4b30fcdd15cff1a47b53cf96296b15cbf5 | fix mask eval | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/coco_eval.py",
"new_path": "ppdet/utils/coco_eval.py",
"diff": "@@ -121,6 +121,7 @@ def mask_eval(results, anno_file, outfile, resolution, thresh_binarize=0.5):\nim_id = int(im_ids[i][0])\nclsid_scores = bboxes[s:s + num][:, 0:2]\nmask = masks[s:s ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix mask eval (#498) |
499,304 | 15.04.2020 20:05:21 | -28,800 | d103a9f83a84be9c2945a59b061e6bd1753ba759 | fix quant train prog | [
{
"change_type": "MODIFY",
"old_path": "slim/quantization/train.py",
"new_path": "slim/quantization/train.py",
"diff": "@@ -59,6 +59,10 @@ def load_global_step(exe, prog, path):\ndef main():\n+ if FLAGS.eval is False:\n+ raise ValueError(\n+ \"Currently only supports `--eval==True` while training in... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix quant train prog (#509) |
499,304 | 16.04.2020 11:33:13 | -28,800 | f8bc467346c4ae5b82d8c15e74598516839c1aed | Set MobileNetV3 `feature_maps` parameter | [
{
"change_type": "MODIFY",
"old_path": "configs/ssd/ssdlite_mobilenet_v3_large.yml",
"new_path": "configs/ssd/ssdlite_mobilenet_v3_large.yml",
"diff": "@@ -26,8 +26,8 @@ MobileNetV3:\nscale: 1.0\nmodel_name: large\nextra_block_filters: [[256, 512], [128, 256], [128, 256], [64, 128]]\n- with_extra_bl... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Set MobileNetV3 `feature_maps` parameter (#515) |
499,304 | 20.04.2020 15:11:50 | -28,800 | 003f265719c0e81b7662e6e1763330dd238a2f66 | fix inference vis.py py2 encoding | [
{
"change_type": "MODIFY",
"old_path": "inference/tools/vis.py",
"new_path": "inference/tools/vis.py",
"diff": "@@ -20,6 +20,7 @@ import gflags\nimport numpy as np\nimport json\nfrom PIL import Image, ImageDraw, ImageFont\n+import io\nFlags = gflags.FLAGS\ngflags.DEFINE_string('img_path', 'abc', 'im... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix inference vis.py py2 encoding (#522) |
499,385 | 22.04.2020 23:01:11 | -28,800 | cbddf331f472df52801d421262ffa84765ba9a1a | Fix bug in class_aware_sampling | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/reader.py",
"new_path": "ppdet/data/reader.py",
"diff": "@@ -279,7 +279,7 @@ class Reader(object):\nself.indexes = np.random.choice(\nself._sample_num,\nself._sample_num,\n- replace=False,\n+ replace=True,\np=self.img_weights)\nif self._shuffle:\n"
... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix bug in class_aware_sampling (#541) |
499,313 | 23.04.2020 12:22:44 | -28,800 | f891064adfa0483405b5cbcba617c343743f9cb3 | add yolov3_mobilenet_v3 pruned model for mobile side | [
{
"change_type": "MODIFY",
"old_path": "configs/yolov3_mobilenet_v3.yml",
"new_path": "configs/yolov3_mobilenet_v3.yml",
"diff": "@@ -19,6 +19,7 @@ MobileNetV3:\nnorm_decay: 0.\nmodel_name: large\nscale: 1.\n+ extra_block_filters: []\nfeature_maps: [1, 2, 3, 4, 6]\nYOLOv3Head:\n"
},
{
"chang... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add yolov3_mobilenet_v3 pruned model for mobile side (#532) |
499,388 | 30.04.2020 13:06:21 | -28,800 | 50f32ee1f460c115b8da5b6bcb02af37ccbe92b0 | fix iou aware bug | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/losses/yolo_loss.py",
"new_path": "ppdet/modeling/losses/yolo_loss.py",
"diff": "@@ -117,6 +117,7 @@ class YOLOv3Loss(object):\nfor i, (output, target,\nanchors) in enumerate(zip(outputs, targets, mask_anchors)):\nan_num = len(anchors) // 2\n+ i... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix iou aware bug (#578) |
499,300 | 30.04.2020 19:51:27 | -28,800 | 1a485e12c94e5f68664914f1fc8a8b0abf10a7ae | Remove `pycocotools` from `requirements.txt`
* Remove `pycocotools` from `requirements.txt`
git version is required for numpy > 1.18
* Remove `cython`, add pip install doc | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/INSTALL.md",
"new_path": "docs/tutorials/INSTALL.md",
"diff": "@@ -59,6 +59,8 @@ COCO-API is needed for running. Installation is as follows:\n# Alternatively, if you do not have permissions or prefer\n# not to install the COCO API into global si... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Remove `pycocotools` from `requirements.txt` (#582)
* Remove `pycocotools` from `requirements.txt`
git version is required for numpy > 1.18
* Remove `cython`, add pip install doc |
499,400 | 01.05.2020 10:37:52 | -28,800 | 20303e693bf0dcfa85b184e2ce1ca44b47473e95 | Fix eval run in pruning | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/rpn_head.py",
"new_path": "ppdet/modeling/anchor_heads/rpn_head.py",
"diff": "@@ -169,7 +169,7 @@ class RPNHead(object):\nrpn_cls_prob = fluid.layers.transpose(\nrpn_cls_prob, perm=[0, 3, 1, 2])\nprop_op = self.train_proposal if mod... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix eval run in pruning (#576) |
499,385 | 01.05.2020 01:16:06 | 18,000 | cad500e55c7ee68521783151f092d6f13e1a0ce0 | Update rpn_head.py | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/rpn_head.py",
"new_path": "ppdet/modeling/anchor_heads/rpn_head.py",
"diff": "@@ -169,7 +169,7 @@ class RPNHead(object):\nrpn_cls_prob = fluid.layers.transpose(\nrpn_cls_prob, perm=[0, 3, 1, 2])\nprop_op = self.train_proposal if mod... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Update rpn_head.py (#588) |
499,324 | 06.05.2020 19:08:36 | -28,800 | 04a338b61858d3ff1ed12b87b78666a2e0c64b2d | Update yolov3_darknet_voc_diouloss.yml
use_fine_grained_loss: true | [
{
"change_type": "MODIFY",
"old_path": "configs/yolov3_darknet_voc_diouloss.yml",
"new_path": "configs/yolov3_darknet_voc_diouloss.yml",
"diff": "@@ -9,7 +9,7 @@ map_type: 11point\npretrain_weights: https://paddle-imagenet-models-name.bj.bcebos.com/DarkNet53_pretrained.tar\nweights: output/yolov3_da... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Update yolov3_darknet_voc_diouloss.yml (#598)
use_fine_grained_loss: true |
499,304 | 07.05.2020 08:40:37 | -28,800 | 1d9239738d5901b2204a8d4e6895593191915cf7 | add ssdlite_mbv1 | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "configs/ssd/ssdlite_mobilenet_v1.yml",
"diff": "+architecture: SSD\n+use_gpu: true\n+max_iters: 400000\n+snapshot_iter: 20000\n+log_smooth_window: 20\n+log_iter: 20\n+metric: COCO\n+pretrain_weights: https://paddle-imagenet-models-name.bj.bcebos... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add ssdlite_mbv1 (#595) |
499,400 | 08.05.2020 11:31:15 | -28,800 | be2c012bb4048d3fe032b5194253095588324e0b | Fix eval_run in demo of pruning and sensitivity | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/prune.py",
"new_path": "slim/prune/prune.py",
"diff": "@@ -293,8 +293,14 @@ def main():\nif FLAGS.eval:\n# evaluation\n- results = eval_run(exe, compiled_eval_prog, eval_loader,\n- eval_keys, eval_values, eval_cls)\n+ results = eval_run(\n+ exe,\n+ ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix eval_run in demo of pruning and sensitivity (#611) |
499,304 | 08.05.2020 13:11:03 | -28,800 | 807287417f7d8a4cb02a69c2fdb307bebf1badb7 | fix face_eval check_config | [
{
"change_type": "MODIFY",
"old_path": "tools/export_serving_model.py",
"new_path": "tools/export_serving_model.py",
"diff": "@@ -22,6 +22,7 @@ from paddle import fluid\nfrom ppdet.core.workspace import load_config, merge_config, create\nfrom ppdet.utils.cli import ArgsParser\n+from ppdet.utils.chec... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix face_eval check_config (#612) |
499,333 | 08.05.2020 15:21:50 | -28,800 | 78c37c48e52c07fd66c100e8e4d1fef28649b34c | fix yolo eval | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/yolo_head.py",
"new_path": "ppdet/modeling/anchor_heads/yolo_head.py",
"diff": "@@ -68,7 +68,8 @@ class YOLOv3Head(object):\nbackground_label=-1).__dict__,\nweight_prefix_name='',\ndownsample=[32, 16, 8],\n- scale_x_y=1.0):\n+ scale... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix yolo eval (#613) |
499,333 | 09.05.2020 11:14:07 | -28,800 | 52ecf50607de7e199f6de36637053324555dc37d | fix clip_bbox | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/yolo_head.py",
"new_path": "ppdet/modeling/anchor_heads/yolo_head.py",
"diff": "@@ -384,7 +384,7 @@ class YOLOv4Head(YOLOv3Head):\nyolo_loss=yolo_loss,\niou_aware=iou_aware,\niou_aware_factor=iou_aware_factor,\n- clip_box=clip_bbox)... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix clip_bbox (#620) |
499,333 | 09.05.2020 12:27:01 | -28,800 | 3fba477820e3873432b12d6c0b90eb93af1d5ede | minor fix for cornernet & yolov4 | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/corner_head.py",
"new_path": "ppdet/modeling/anchor_heads/corner_head.py",
"diff": "@@ -23,12 +23,8 @@ from paddle.fluid.initializer import Constant\nfrom ..backbones.hourglass import _conv_norm, kaiming_init\nfrom ppdet.core.worksp... | Python | Apache License 2.0 | paddlepaddle/paddledetection | minor fix for cornernet & yolov4 (#621) |
499,304 | 10.05.2020 11:56:51 | -28,800 | cb3875d464f731bd424ddc41e455aa6b47a8eb8d | fix voc doc JPEGImages error | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -22,6 +22,7 @@ __pycache__/\n/lib/\n/lib64/\n/output/\n+/inference_model/\n/parts/\n/sdist/\n/var/\n"
}
] | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix voc doc JPEGImages error (#624) |
499,304 | 10.05.2020 11:58:29 | -28,800 | 0d127b2b9b70427a4c1c286e6124e11c4a2625b9 | fix python deploy --model_dir | [
{
"change_type": "MODIFY",
"old_path": "deploy/python/infer.py",
"new_path": "deploy/python/infer.py",
"diff": "@@ -531,7 +531,7 @@ if __name__ == '__main__':\ntype=str,\ndefault=None,\nhelp=(\"Directory include:'__model__', '__params__', \"\n- \"'infer_cfg.yml', created by export_model.\"),\n+ \"'i... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix python deploy --model_dir (#629) |
499,333 | 12.05.2020 17:12:37 | -28,800 | 919310bbc0600e03e0c886a8b589546a203e139a | deprecate cpp_infer | [
{
"change_type": "MODIFY",
"old_path": "tools/cpp_infer.py",
"new_path": "tools/cpp_infer.py",
"diff": "@@ -505,6 +505,8 @@ def visualize(bbox_results, catid2name, num_classes, mask_results=None):\ndef infer():\n+ logger.info(\"cpp_infer.py is deprecated since release/0.3. Please use\"\n+ \"deploy/p... | Python | Apache License 2.0 | paddlepaddle/paddledetection | deprecate cpp_infer (#651) |
499,306 | 13.05.2020 10:57:03 | -28,800 | a65395fd2758cbe8c0de638874bda2018121ecc2 | fix eval run api usage in slim/distillation | [
{
"change_type": "MODIFY",
"old_path": "slim/distillation/distill.py",
"new_path": "slim/distillation/distill.py",
"diff": "@@ -338,7 +338,7 @@ def main():\neval_prog)\n# eval\nresults = eval_run(exe, compiled_eval_prog, eval_loader, eval_keys,\n- eval_values, eval_cls)\n+ eval_values, eval_cls, cfg... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix eval run api usage in slim/distillation (#655) |
499,311 | 13.05.2020 20:05:55 | -28,800 | 38d1517fdadbcf9c19706deff2e0f8a95936ee88 | Make TensorRT dir settable | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/CMakeLists.txt",
"new_path": "deploy/cpp/CMakeLists.txt",
"diff": "@@ -9,6 +9,7 @@ option(WITH_TENSORRT \"Compile demo with TensorRT.\" OFF)\nSET(PADDLE_DIR \"\" CACHE PATH \"Location of libraries\")\nSET(OPENCV_DIR \"\" CACHE PATH \"Location of lib... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Make TensorRT dir settable (#658) |
499,333 | 14.05.2020 15:07:06 | -28,800 | e3f1384deb3108adc05873493014a35950c04eae | update doc for ext_op | [
{
"change_type": "MODIFY",
"old_path": "ppdet/ext_op/src/make.sh",
"new_path": "ppdet/ext_op/src/make.sh",
"diff": "@@ -19,5 +19,3 @@ g++ bottom_pool_op.cc bottom_pool_op.cu.o top_pool_op.cc top_pool_op.cu.o right_\n-L /usr/local/cuda/lib64 -lpaddle_framework -lcudart\nrm *.cu.o\n-\n-export LD_LIBRA... | Python | Apache License 2.0 | paddlepaddle/paddledetection | update doc for ext_op (#667) |
499,304 | 14.05.2020 16:24:24 | -28,800 | b464f689d5e125ef7e74610ed354d7bcdfbb76e7 | fix check_version in some script | [
{
"change_type": "MODIFY",
"old_path": "slim/distillation/distill.py",
"new_path": "slim/distillation/distill.py",
"diff": "@@ -32,7 +32,7 @@ from ppdet.data.reader import create_reader\nfrom ppdet.utils.eval_utils import parse_fetches, eval_results, eval_run\nfrom ppdet.utils.stats import TrainingS... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix check_version in some script (#670) |
499,304 | 14.05.2020 17:52:03 | -28,800 | 31f7c6984e571f380565a68e5d28f437af4df19f | fix deploy/python/infer variable | [
{
"change_type": "MODIFY",
"old_path": "deploy/python/infer.py",
"new_path": "deploy/python/infer.py",
"diff": "@@ -518,7 +518,7 @@ def predict_video():\nfourcc = cv2.VideoWriter_fourcc(*'mp4v')\nvideo_name = os.path.split(FLAGS.video_file)[-1]\nif not os.path.exists(FLAGS.output_dir):\n- os.makedir... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix deploy/python/infer variable (#675) |
499,304 | 15.05.2020 10:50:59 | -28,800 | 42bd90d717085b2fc8d5f718def120dc617b32b9 | fix catid2name in coco eval | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/coco_eval.py",
"new_path": "ppdet/utils/coco_eval.py",
"diff": "@@ -609,6 +609,7 @@ def coco17_category_info(with_background=True):\nif not with_background:\nclsid2catid = {k - 1: v for k, v in clsid2catid.items()}\n+ catid2name.pop(0)\nelse:\nclsi... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix catid2name in coco eval (#681) |
499,323 | 15.05.2020 00:17:46 | 18,000 | 3697a31eb8de891ddd7814cb7003319dd14f909f | Fix train_eval in quantization | [
{
"change_type": "MODIFY",
"old_path": "slim/quantization/train.py",
"new_path": "slim/quantization/train.py",
"diff": "@@ -256,8 +256,14 @@ def main():\nif FLAGS.eval:\n# evaluation\n- results = eval_run(exe, compiled_eval_prog, eval_loader,\n- eval_keys, eval_values, eval_cls)\n+ results = eval_ru... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix train_eval in quantization (#682) |
499,400 | 15.05.2020 18:45:06 | -28,800 | 9227e51cf68446c20b8893c4a67fa06268a7df26 | Fix eval in pruning demo. | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/eval.py",
"new_path": "slim/prune/eval.py",
"diff": "@@ -168,13 +168,23 @@ def main():\nif 'weights' in cfg:\ncheckpoint.load_checkpoint(exe, eval_prog, cfg.weights)\n- results = eval_run(exe, compile_program, loader, keys, values, cls, cfg,\n- sub_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix eval in pruning demo. (#687) |
499,304 | 15.05.2020 20:00:28 | -28,800 | bb42d6de89e4109cc7db367cd64ed099cdc251c3 | fix obj365 segmentation error | [
{
"change_type": "MODIFY",
"old_path": "configs/obj365/cascade_rcnn_dcnv2_se154_vd_fpn_gn_cas.yml",
"new_path": "configs/obj365/cascade_rcnn_dcnv2_se154_vd_fpn_gn_cas.yml",
"diff": "@@ -124,8 +124,6 @@ TrainReader:\n- !DecodeImage\nto_rgb: True\n- !RandomFlipImage\n- is_mask_flip: true\n- is_normali... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix obj365 segmentation error (#691) |
499,333 | 15.05.2020 20:51:23 | -28,800 | 4b17659c6fefc575f9dea22bf8d58131bfd3ef80 | fix unittest in ext_op | [
{
"change_type": "MODIFY",
"old_path": "ppdet/ext_op/test/test_corner_pool.py",
"new_path": "ppdet/ext_op/test/test_corner_pool.py",
"diff": "@@ -83,11 +83,7 @@ class TestRightPoolOp(unittest.TestCase):\nplace = fluid.CUDAPlace(0)\nwith fluid.program_guard(tp, sp):\n- x = fluid.data(\n- name=self.na... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix unittest in ext_op (#689) |
499,300 | 18.05.2020 10:40:01 | -28,800 | aa217a9f8a963a310ab5ee5adea56290789b845f | Work around broadcast issue in iou_aware | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/iou_aware.py",
"new_path": "ppdet/modeling/anchor_heads/iou_aware.py",
"diff": "@@ -35,7 +35,9 @@ def _split_ioup(output, an_num, num_classes):\ndef _de_sigmoid(x, eps=1e-7):\nx = fluid.layers.clip(x, eps, 1 / eps)\n- x = fluid.laye... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Work around broadcast issue in iou_aware (#690) |
499,333 | 18.05.2020 11:12:56 | -28,800 | 0ce6b7e117daa25cd6fe22e450d7084472cda917 | remove trt_int8 | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/include/config_parser.h",
"new_path": "deploy/cpp/include/config_parser.h",
"diff": "@@ -42,12 +42,12 @@ class ConfigPaser {\nYAML::Node config;\nconfig = YAML::LoadFile(model_dir + OS_PATH_SEP + cfg);\n- // Get runtime mode : fluid, trt_int8, trt_f... | Python | Apache License 2.0 | paddlepaddle/paddledetection | remove trt_int8 (#708) |
499,333 | 18.05.2020 12:00:00 | -28,800 | 95713b8594e7cda8df502c7762a625764098006d | fix ext_op | [
{
"change_type": "MODIFY",
"old_path": "ppdet/ext_op/test/test_corner_pool.py",
"new_path": "ppdet/ext_op/test/test_corner_pool.py",
"diff": "@@ -17,7 +17,14 @@ from __future__ import print_function\nimport unittest\nimport numpy as np\nimport paddle.fluid as fluid\n-import cornerpool_lib\n+import o... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix ext_op (#711) |
499,300 | 18.05.2020 14:01:28 | -28,800 | 6d23b275972edf1371432a2d8402303320700789 | Fix FCOS API usage
revert `reshape` changes | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/fcos_head.py",
"new_path": "ppdet/modeling/anchor_heads/fcos_head.py",
"diff": "@@ -283,14 +283,22 @@ class FCOSHead(object):\nlast dimension is [x1, y1, x2, y2]\n\"\"\"\nact_shape_cls = self.__merge_hw(box_cls)\n- box_cls_ch_last =... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix FCOS API usage (#718)
revert `reshape` changes |
499,375 | 18.05.2020 15:10:06 | -28,800 | befe81243a78b37167fd0199f7f150ea1802b0c8 | keep the option 'num_classes' and 'with_background' consistent | [
{
"change_type": "MODIFY",
"old_path": "configs/anchor_free/fcos_dcn_r50_fpn_1x.yml",
"new_path": "configs/anchor_free/fcos_dcn_r50_fpn_1x.yml",
"diff": "@@ -8,7 +8,7 @@ save_dir: output\npretrain_weights: https://paddle-imagenet-models-name.bj.bcebos.com/ResNet50_cos_pretrained.tar\nmetric: COCO\nw... | Python | Apache License 2.0 | paddlepaddle/paddledetection | keep the option 'num_classes' and 'with_background' consistent (#722) |
499,400 | 19.05.2020 15:55:01 | -28,800 | 50bc85d266d04e736eb095f46d6b82cfc55c32c2 | Fix eval_run in pruning script | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/prune.py",
"new_path": "slim/prune/prune.py",
"diff": "@@ -307,6 +307,9 @@ def main():\nif FLAGS.eval:\n# evaluation\n+ resolution = None\n+ if 'Mask' in cfg.architecture:\n+ resolution = model.mask_head.resolution\nresults = eval_run(\nexe,\ncompil... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix eval_run in pruning script (#724) |
499,304 | 21.05.2020 09:55:26 | -28,800 | d10c36148fdc2cfa4ecd2c606aa7a7da906ad0d3 | fix cpp deploy in windows | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/CMakeLists.txt",
"new_path": "deploy/cpp/CMakeLists.txt",
"diff": "@@ -9,6 +9,7 @@ option(WITH_TENSORRT \"Compile demo with TensorRT.\" OFF)\nSET(PADDLE_DIR \"\" CACHE PATH \"Location of libraries\")\nSET(OPENCV_DIR \"\" CACHE PATH \"Location of lib... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cpp deploy in windows (#747) |
499,385 | 21.05.2020 10:34:14 | 18,000 | f95da6bebff0f043ac03928fc4f9caa27d48e343 | Fix deploy/cpp/src/object_detector.cc | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/src/object_detector.cc",
"new_path": "deploy/cpp/src/object_detector.cc",
"diff": "@@ -19,8 +19,8 @@ namespace PaddleDetection {\n// Load Model and create model predictor\nvoid ObjectDetector::LoadModel(const std::string& model_dir,\nbool use_gpu,\n... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix deploy/cpp/src/object_detector.cc (#755) |
499,333 | 28.05.2020 21:22:26 | -28,800 | b4ea26999382111c78a9d7d04b98b0f3f0c6e11f | update elementwise in cornernet | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/anchor_heads/corner_head.py",
"new_path": "ppdet/modeling/anchor_heads/corner_head.py",
"diff": "@@ -358,8 +358,13 @@ class CornerHead(object):\ntag1 = fluid.layers.squeeze(br_tag, [2])\ntag_mean = (tag0 + tag1) / 2\n- tag0 = fluid.layers.pow(ta... | Python | Apache License 2.0 | paddlepaddle/paddledetection | update elementwise in cornernet (#804) |
499,311 | 03.06.2020 14:30:14 | -28,800 | 32fb7a7185374ef9e0314665ea43bdd3329bb799 | fix cpp bug cannot load video | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/include/object_detector.h",
"new_path": "deploy/cpp/include/object_detector.h",
"diff": "@@ -54,12 +54,14 @@ cv::Mat VisualizeResult(const cv::Mat& img,\nclass ObjectDetector {\npublic:\n- explicit ObjectDetector(const std::string& model_dir, bool u... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cpp bug cannot load video (#845) |
499,333 | 03.06.2020 20:37:25 | -28,800 | 5a3a85a5fdf4440befccfebd48cbef997ecefa22 | fix check.py | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/check.py",
"new_path": "ppdet/utils/check.py",
"diff": "@@ -66,6 +66,8 @@ def check_version(version='1.7.0'):\nlength = min(len(version_installed), len(version_split))\nfor i in six.moves.range(length):\n+ if version_installed[i] > version_split[i]... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix check.py (#865) |
499,385 | 08.06.2020 12:48:28 | -28,800 | 377a5ce1269c7f05b5f19b72360bd1a6800b8454 | Clean fluid.compiler.CompiledProgram | [
{
"change_type": "MODIFY",
"old_path": "slim/distillation/distill.py",
"new_path": "slim/distillation/distill.py",
"diff": "@@ -305,7 +305,7 @@ def main():\nbuild_strategy=build_strategy,\nexec_strategy=exec_strategy)\n- compiled_eval_prog = fluid.compiler.CompiledProgram(eval_prog)\n+ compiled_eval... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Clean fluid.compiler.CompiledProgram (#891) |
499,385 | 08.06.2020 14:14:41 | -28,800 | f1b91931f1645d94d2b2e9612fb9fd62e4726665 | Add Python version description for ViualDL | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/QUICK_STARTED.md",
"new_path": "docs/tutorials/QUICK_STARTED.md",
"diff": "@@ -20,6 +20,14 @@ python dataset/fruit/download_fruit.py\nTraining:\n+```bash\n+python -u tools/train.py -c configs/yolov3_mobilenet_v1_fruit.yml --eval\n+```\n+\n+Use `... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Add Python version description for ViualDL (#895) |
499,333 | 09.06.2020 14:53:00 | -28,800 | 2f6b2ec24d1de1cca484eb890e851295f974d1c2 | support fcos on voc | [
{
"change_type": "MODIFY",
"old_path": "configs/anchor_free/fcos_dcn_r50_fpn_1x.yml",
"new_path": "configs/anchor_free/fcos_dcn_r50_fpn_1x.yml",
"diff": "@@ -75,7 +75,7 @@ OptimizerBuilder:\nTrainReader:\ninputs_def:\n- fields: ['image', 'gt_bbox', 'gt_class', 'gt_score', 'im_info']\n+ fields: ['ima... | Python | Apache License 2.0 | paddlepaddle/paddledetection | support fcos on voc (#902) |
499,313 | 12.06.2020 11:13:59 | -28,800 | e77baea4741c82b6922d21e5047d4cddf4ff0fbd | check extra_conv needed in mobilenet_v3 | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/backbones/mobilenet_v3.py",
"new_path": "ppdet/modeling/backbones/mobilenet_v3.py",
"diff": "@@ -393,6 +393,8 @@ class MobileNetV3(object):\nself.end_points.append(conv)\n# extra block\n+ # check whether conv_extra is needed\n+ if self.block_str... | Python | Apache License 2.0 | paddlepaddle/paddledetection | check extra_conv needed in mobilenet_v3 (#933) |
499,333 | 17.06.2020 12:28:15 | -28,800 | 27fd71382a4f32db4c558ccb86a7b41c7916555d | add python version check for visualdl | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/GETTING_STARTED.md",
"new_path": "docs/tutorials/GETTING_STARTED.md",
"diff": "@@ -41,8 +41,8 @@ list below can be viewed by `--help`\n| --draw_threshold | infer | Threshold to reserve the result for visualization | 0.5 | `--draw_threshold 0.7` ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add python version check for visualdl (#951) |
499,333 | 30.06.2020 19:18:07 | -28,800 | ce5ab17279c96a540b3d381d4379a35612e60dfe | support multi-batch for faster-rcnn & mask-rcnn | [
{
"change_type": "MODIFY",
"old_path": "configs/faster_reader.yml",
"new_path": "configs/faster_reader.yml",
"diff": "@@ -24,6 +24,10 @@ TrainReader:\n- !Permute\nto_bgr: false\nchannel_first: true\n+ batch_transforms:\n+ - !PadBatch\n+ pad_to_stride: -1.\n+ use_padded_im_info: false\nbatch_size: 1\... | Python | Apache License 2.0 | paddlepaddle/paddledetection | support multi-batch for faster-rcnn & mask-rcnn (#998) |
499,304 | 06.07.2020 15:27:15 | -28,800 | 2a3cafdcfc113dd222ce5193f98a045e6f72f5e2 | fix modelzoo and custom dataset docs error | [
{
"change_type": "MODIFY",
"old_path": "docs/MODEL_ZOO.md",
"new_path": "docs/MODEL_ZOO.md",
"diff": "@@ -196,7 +196,7 @@ results of image size 608/416/320 above. Deformable conv is added on stage 5 of\n| MobileNet_v1 | 300 | 64 | Cosine decay(40w) | - | 23.6 | [model](https://paddlemodels.bj.bcebos... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix modelzoo and custom dataset docs error (#1019) |
499,304 | 06.07.2020 16:38:40 | -28,800 | a66dfe9c64aea16c9a0e5c15f5d5ac7576fe7e04 | fix softnms type error | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/ops.py",
"new_path": "ppdet/modeling/ops.py",
"diff": "@@ -610,7 +610,7 @@ class MultiClassSoftNMS(object):\nres.set_lod([out_offsets])\nif len(pred_res) == 0:\npred_res = np.array([[1]], dtype=np.float32)\n- res.set(np.vstack(pred_res), fluid.C... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix softnms type error (#1020) |
499,304 | 08.07.2020 12:44:45 | -28,800 | fb650fbb854b52ac5e9c62f8a496f0ad9da6e942 | fix cascade_cbr200 configs error | [
{
"change_type": "MODIFY",
"old_path": "configs/dcn/cascade_rcnn_cbr200_vd_fpn_dcnv2_nonlocal_softnms.yml",
"new_path": "configs/dcn/cascade_rcnn_cbr200_vd_fpn_dcnv2_nonlocal_softnms.yml",
"diff": "@@ -112,8 +112,8 @@ TrainReader:\nfields: ['image', 'im_info', 'im_id', 'gt_bbox', 'gt_class', 'is_cro... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cascade_cbr200 configs error (#1031) |
499,304 | 08.07.2020 18:33:55 | -28,800 | c8c51ac7836e71121b9825d080055710ee3e89dc | fix use cv2 in face_detection | [
{
"change_type": "MODIFY",
"old_path": "configs/face_detection/blazeface_nas.yml",
"new_path": "configs/face_detection/blazeface_nas.yml",
"diff": "@@ -98,10 +98,6 @@ EvalReader:\n- !DecodeImage\nto_rgb: true\n- !NormalizeBox {}\n- - !ResizeImage\n- interp: 1\n- target_size: 640\n- use_cv2: false\n-... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix use cv2 in face_detection (#1034) |
499,304 | 09.07.2020 13:20:03 | -28,800 | 4d7ce6432e043adae6b464d9d47355ad290b46ff | Add conv_decay and relu6 in mobilenet | [
{
"change_type": "MODIFY",
"old_path": "configs/ssd/ssdlite_mobilenet_v1.yml",
"new_path": "configs/ssd/ssdlite_mobilenet_v1.yml",
"diff": "@@ -22,7 +22,7 @@ SSD:\nscore_threshold: 0.01\nMobileNet:\n- norm_decay: 0.0\n+ conv_decay: 0.00004\nconv_group_scale: 1\nextra_block_filters: [[256, 512], [128... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Add conv_decay and relu6 in mobilenet (#1038) |
499,304 | 09.07.2020 20:06:51 | -28,800 | c3aad6b6709f48d012d240f7703026449ada2e10 | add yolov3_darknet diou_loss model | [
{
"change_type": "MODIFY",
"old_path": "docs/MODEL_ZOO.md",
"new_path": "docs/MODEL_ZOO.md",
"diff": "@@ -149,11 +149,12 @@ The backbone models pretrained on ImageNet are available. All backbone models ar\n### YOLO v3 on Pascal VOC\n-| Backbone | Size | Image/gpu | Lr schd | Inf time (fps) | Box AP ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add yolov3_darknet diou_loss model (#1041) |
499,333 | 10.07.2020 15:43:47 | -28,800 | d30bb02e8763fd9316007fa7f3ac6c76129dfba1 | fix cascade_rcnn_cls_aware_r101_vd_fpn_ms_test | [
{
"change_type": "MODIFY",
"old_path": "configs/cascade_rcnn_cls_aware_r101_vd_fpn_ms_test.yml",
"new_path": "configs/cascade_rcnn_cls_aware_r101_vd_fpn_ms_test.yml",
"diff": "@@ -109,6 +109,11 @@ OptimizerBuilder:\nfactor: 0.0001\ntype: L2\n+\n+_READER_: 'faster_fpn_reader.yml'\n+TrainReader:\n+ ba... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cascade_rcnn_cls_aware_r101_vd_fpn_ms_test (#1050) |
499,304 | 10.07.2020 20:37:14 | -28,800 | 315fd738295d5c6c845320ff6e47b7111b44df66 | add blazeface keypoint model and modify some comment | [
{
"change_type": "MODIFY",
"old_path": "docs/featured_model/FACE_DETECTION_en.md",
"new_path": "docs/featured_model/FACE_DETECTION_en.md",
"diff": "@@ -270,6 +270,12 @@ wget https://dataset.bj.bcebos.com/wider_face/wider_face_train_bbx_lmk_gt.txt\n(2)Use `configs/face_detection/blazeface_keypoint.ym... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add blazeface keypoint model and modify some comment (#1048) |
499,333 | 16.07.2020 12:53:56 | -28,800 | 07baa6d3cb6503e0caa6d9585ea4e668f16d2f52 | fix python inference without resize | [
{
"change_type": "MODIFY",
"old_path": "deploy/python/infer.py",
"new_path": "deploy/python/infer.py",
"diff": "@@ -433,7 +433,7 @@ class Detector():\ndef preprocess(self, im):\n# process image by preprocess_ops\nim_info = {\n- 'scale': 1.,\n+ 'scale': [1., 1.],\n'origin_shape': None,\n'resize_shape... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix python inference without resize (#1070) |
499,311 | 16.07.2020 14:00:28 | -28,800 | c4219c2715ce41482401f8b519f6b4232a8bfaf3 | fix bug of image_shape of Resize is not define in yml | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/include/preprocess_op.h",
"new_path": "deploy/cpp/include/preprocess_op.h",
"diff": "@@ -91,8 +91,10 @@ class Resize : public PreprocessOp {\narch_ = arch;\ninterp_ = item[\"interp\"].as<int>();\nmax_size_ = item[\"max_size\"].as<int>();\n- target_s... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix bug of image_shape of Resize is not define in yml (#1064) |
499,333 | 16.07.2020 17:52:13 | -28,800 | 64a2a78ed2fc12ad3d929509d2ae6e81c6d881a3 | fix cpp inference without resize | [
{
"change_type": "MODIFY",
"old_path": "configs/face_detection/blazeface.yml",
"new_path": "configs/face_detection/blazeface.yml",
"diff": "@@ -96,11 +96,12 @@ EvalReader:\n- !DecodeImage\nto_rgb: true\n- !NormalizeBox {}\n- - !Permute {}\n- !NormalizeImage\n+ is_channel_first: false\nis_scale: fals... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cpp inference without resize (#1073) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.