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,298 | 13.02.2021 23:21:04 | -28,800 | 28e5a3abc6999b00ed36dc54ba74937223a79b29 | fix RCNNBox, test=dygraph | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/layers.py",
"new_path": "dygraph/ppdet/modeling/layers.py",
"diff": "@@ -318,7 +318,8 @@ class RCNNBox(object):\norigin_shape = paddle.concat(origin_shape_list)\n- # [N, C*4]\n+ # bbox_pred.shape: [N, C*4]\n+ # C=num_classes in faster/ma... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix RCNNBox, test=dygraph (#2215) |
499,315 | 15.02.2021 19:19:29 | -28,800 | edbad8ed3aeb4a4ccd7730dc7d2faba71a6a02a2 | replace plain_formatter | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/utils/logger.py",
"new_path": "dygraph/ppdet/utils/logger.py",
"diff": "@@ -65,7 +65,7 @@ def setup_logger(name=\"ppdet\", output=None):\nos.makedirs(os.path.dirname(filename))\nfh = logging.FileHandler(filename, mode='a')\nfh.setLevel(logging.DE... | Python | Apache License 2.0 | paddlepaddle/paddledetection | replace plain_formatter (#2212) |
499,298 | 17.02.2021 18:19:07 | -28,800 | 5b6bebf23e223aef97e8a1f49f0e9e210ca981e4 | fix dcn r101vd config, test=dygraph | [
{
"change_type": "MODIFY",
"old_path": "dygraph/configs/dcn/faster_rcnn_dcn_r101_vd_fpn_1x_coco.yml",
"new_path": "dygraph/configs/dcn/faster_rcnn_dcn_r101_vd_fpn_1x_coco.yml",
"diff": "_BASE_: [\n'faster_rcnn_dcn_r50_fpn_1x_coco.yml',\n]\n-pretrain_weights: https://paddle-imagenet-models-name.bj.bc... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix dcn r101vd config, test=dygraph (#2223) |
499,395 | 20.02.2021 19:59:32 | -28,800 | 5164dfd267bff8f598349475e74a8d7c92f377ec | fix icafe 21567: DIoULossYolo passing parameters problem | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/losses/diou_loss_yolo.py",
"new_path": "ppdet/modeling/losses/diou_loss_yolo.py",
"diff": "@@ -54,7 +54,8 @@ class DiouLossYolo(IouLoss):\nanchors,\ndownsample_ratio,\nbatch_size,\n- eps=1.e-10):\n+ eps=1.e-10,\n+ **kwargs):\n'''\nArgs:\nx | y |... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix icafe 21567: DIoULossYolo passing parameters problem (#2159) |
499,304 | 20.02.2021 20:09:15 | -28,800 | 79b1d807dbc55bb336fb95f9244165cd03e75761 | add attr pixel_offset ingenerate_proposals,distribute_fpn_proposals, test=dygraph | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/ops.py",
"new_path": "dygraph/ppdet/modeling/ops.py",
"diff": "@@ -451,6 +451,7 @@ def distribute_fpn_proposals(fpn_rois,\nmax_level,\nrefer_level,\nrefer_scale,\n+ pixel_offset=False,\nrois_num=None,\nname=None):\n\"\"\"\n@@ -525,7 +526... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add attr pixel_offset ingenerate_proposals,distribute_fpn_proposals, test=dygraph (#2245) |
499,304 | 21.02.2021 20:41:31 | -28,800 | 79e2436a8be51ee468f226c31f40e8dc72656df3 | fix distribute train in cascade_rcnn | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/heads/bbox_head.py",
"new_path": "dygraph/ppdet/modeling/heads/bbox_head.py",
"diff": "@@ -265,10 +265,6 @@ class BBoxHead(nn.Layer):\nreg_name = 'loss_bbox_reg'\nloss_bbox = {}\n- if fg_inds.numel() == 0:\n- loss_bbox[cls_name] = paddle... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix distribute train in cascade_rcnn (#2246) |
499,313 | 22.02.2021 13:27:55 | -28,800 | 07b75a88bd36ae3f70c5ad0c7add8508fc79af67 | fix switch_ir_optim in deploy/infer | [
{
"change_type": "MODIFY",
"old_path": "dygraph/deploy/python/infer.py",
"new_path": "dygraph/deploy/python/infer.py",
"diff": "@@ -316,7 +316,11 @@ def load_predictor(model_dir,\n# initial GPU memory(M), device ID\nconfig.enable_use_gpu(200, 0)\n# optimize graph and fuse op\n- config.switch_ir_opti... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix switch_ir_optim in deploy/infer (#2230) |
499,304 | 23.02.2021 15:55:41 | -28,800 | 7c3def89a2d92a565417d0ca110bccf5fbcc5a5f | fix some model link in dygraph | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "dygraph/configs/dcn/cascade_rcnn_dcn_r50_fpn_1x_coco.yml",
"diff": "+_BASE_: [\n+ '../datasets/coco_detection.yml',\n+ '../runtime.yml',\n+ '../cascade_rcnn/_base_/optimizer_1x.yml',\n+ '../cascade_rcnn/_base_/cascade_rcnn_r50_fpn.yml',\n+ '../c... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix some model link in dygraph (#2256) |
499,313 | 23.02.2021 15:58:37 | -28,800 | 1a66a9d292f65fec0a355264e627e3bcc3d80870 | add 2.0rc changelog | [
{
"change_type": "MODIFY",
"old_path": "README_en.md",
"new_path": "README_en.md",
"diff": "@@ -260,7 +260,7 @@ All these models can be get in [Model Zoo](#ModelZoo)\n## Updates\n-v0.5.0 was released at `11/2020`, add SOLOv2, etc. And add Android mobile demo, add PACT quantization strategy, add obje... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add 2.0rc changelog (#2254) |
499,395 | 23.02.2021 21:30:12 | -28,800 | 72b7f9ef644d0b7dc9cb3c3c96eb8d26b8d61cc3 | modify transform op of yolo and solo configs | [
{
"change_type": "MODIFY",
"old_path": "dygraph/configs/fcos/fcos_r50_fpn_multiscale_2x_coco.yml",
"new_path": "dygraph/configs/fcos/fcos_r50_fpn_multiscale_2x_coco.yml",
"diff": "@@ -10,17 +10,13 @@ weights: output/fcos_r50_fpn_multiscale_2x_coco/model_final\nTrainReader:\nsample_transforms:\n- - D... | Python | Apache License 2.0 | paddlepaddle/paddledetection | modify transform op of yolo and solo configs (#2260) |
499,304 | 02.03.2021 20:05:01 | -28,800 | be4269fbaace8f2dad5a23e60a1451e82b12b946 | fix RCNN model deploy infer | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/heads/roi_extractor.py",
"new_path": "dygraph/ppdet/modeling/heads/roi_extractor.py",
"diff": "@@ -79,7 +79,6 @@ class RoIAlign(object):\nsampling_ratio=self.sampling_ratio,\nrois_num=rois_num_dist[lvl],\naligned=self.aligned)\n- if roi_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix RCNN model deploy infer (#2276) |
499,304 | 10.03.2021 18:41:57 | -28,800 | 0f47172d4985e22f48f8211e197b9f66b9378232 | fix x2coco shell for windows | [
{
"change_type": "MODIFY",
"old_path": "tools/x2coco.py",
"new_path": "tools/x2coco.py",
"diff": "@@ -45,17 +45,14 @@ class MyEncoder(json.JSONEncoder):\nreturn super(MyEncoder, self).default(obj)\n-def getbbox(self, points):\n- polygons = points\n- mask = self.polygons_to_mask([self.height, self.wi... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix x2coco shell for windows (#2322) |
499,304 | 11.03.2021 15:17:14 | -28,800 | d82484d5a8182d542358e4a65a151085c6d91044 | fix some voc2coco mistakes in x2coco shell | [
{
"change_type": "MODIFY",
"old_path": "tools/x2coco.py",
"new_path": "tools/x2coco.py",
"diff": "@@ -230,8 +230,8 @@ def voc_get_coco_annotation(obj, label2id):\nassert label in label2id, \"label is not in label2id.\"\ncategory_id = label2id[label]\nbndbox = obj.find('bndbox')\n- xmin = float(bndbo... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix some voc2coco mistakes in x2coco shell (#2327) |
499,395 | 11.03.2021 19:44:29 | -28,800 | 04340a59b1232d7ffa359d3f9b3a42d20941c13e | fix hang bugs while training using multi machine | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/utils/checkpoint.py",
"new_path": "dygraph/ppdet/utils/checkpoint.py",
"diff": "@@ -41,6 +41,21 @@ def is_url(path):\nor path.startswith('ppdet://')\n+def _get_unique_endpoints(trainer_endpoints):\n+ # Sorting is to avoid different environmental ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix hang bugs while training using multi machine (#2284) |
499,304 | 11.03.2021 20:07:19 | -28,800 | aa2500cf4d18d4b00c669be2b9d272c57e660709 | fix obj365 label and config | [
{
"change_type": "MODIFY",
"old_path": "configs/obj365/cascade_rcnn_cls_aware_r200_vd_fpn_dcnv2_nonlocal_softnms.yml",
"new_path": "configs/obj365/cascade_rcnn_cls_aware_r200_vd_fpn_dcnv2_nonlocal_softnms.yml",
"diff": "@@ -189,7 +189,7 @@ TestReader:\nfields: ['image', 'im_info', 'im_id', 'im_shape... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix obj365 label and config (#2330) |
499,304 | 15.03.2021 10:22:38 | -28,800 | 73acfad8c91d427b63ee8a2091ec18f913993523 | support compute per-category AP and PR curve | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/engine/trainer.py",
"new_path": "dygraph/ppdet/engine/trainer.py",
"diff": "@@ -115,19 +115,23 @@ class Trainer(object):\nif self.mode == 'test':\nself._metrics = []\nreturn\n+ classwise = self.cfg['classwise'] if 'classwise' in self.cfg else Fal... | Python | Apache License 2.0 | paddlepaddle/paddledetection | support compute per-category AP and PR curve (#2346) |
499,400 | 15.03.2021 17:35:29 | -28,800 | 8635791f0699a98e70de7b3b096ab60c9cdce443 | Fix pruning export | [
{
"change_type": "MODIFY",
"old_path": "slim/prune/export_model.py",
"new_path": "slim/prune/export_model.py",
"diff": "@@ -63,6 +63,9 @@ def main():\ntest_fetches = model.test(feed_vars)\ninfer_prog = infer_prog.clone(True)\n+ exe.run(startup_prog)\n+ checkpoint.load_checkpoint(exe, infer_prog, cfg... | Python | Apache License 2.0 | paddlepaddle/paddledetection | Fix pruning export (#2350) |
499,304 | 17.03.2021 12:45:46 | -28,800 | 4f6ffb4092b896f39191ab46ef646c16d86aa3a8 | fix use vdl bug in infer and export model | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/engine/trainer.py",
"new_path": "dygraph/ppdet/engine/trainer.py",
"diff": "@@ -101,7 +101,7 @@ class Trainer(object):\ndef _init_callbacks(self):\nif self.mode == 'train':\nself._callbacks = [LogPrinter(self), Checkpointer(self)]\n- if self.cfg.... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix use vdl bug in infer and export model (#2365) |
499,301 | 18.03.2021 09:43:58 | -28,800 | 2b8638d1d6fdf4b17276594c8c0eb35fdbe0652d | fix errors of usage and some names | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/data/source/dataset.py",
"new_path": "dygraph/ppdet/data/source/dataset.py",
"diff": "@@ -79,7 +79,7 @@ class DetDataset(Dataset):\nself._epoch = epoch_id\ndef parse_dataset(self, ):\n- raise NotImplemented(\n+ raise NotImplementedError(\n\"Need ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix errors of usage and some names (#2351) |
499,395 | 18.03.2021 14:45:59 | -28,800 | 626d2fa159efb392bac4102f8acd0148b24290f5 | support nhwc data_format in yolov3 | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/architectures/meta_arch.py",
"new_path": "dygraph/ppdet/modeling/architectures/meta_arch.py",
"diff": "@@ -12,10 +12,14 @@ __all__ = ['BaseArch']\n@register\nclass BaseArch(nn.Layer):\n- def __init__(self):\n+ def __init__(self, data_for... | Python | Apache License 2.0 | paddlepaddle/paddledetection | support nhwc data_format in yolov3 (#2336) |
499,333 | 19.03.2021 15:28:30 | -28,800 | 588d78b4bd3b4588805356e183080478df6a989e | cherry-pick fix cascade | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/heads/bbox_head.py",
"new_path": "dygraph/ppdet/modeling/heads/bbox_head.py",
"diff": "@@ -265,6 +265,11 @@ class BBoxHead(nn.Layer):\nreg_name = 'loss_bbox_reg'\nloss_bbox = {}\n+ loss_weight = 1.\n+ if fg_inds.numel() == 0:\n+ fg_inds ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | cherry-pick fix cascade (#2381) |
499,333 | 19.03.2021 20:50:19 | -28,800 | a2f57beba49e9c65c03bb9fd83c58bcbbdc4fbf2 | fix training in cascade_rcnn | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/heads/cascade_head.py",
"new_path": "dygraph/ppdet/modeling/heads/cascade_head.py",
"diff": "@@ -227,6 +227,8 @@ class CascadeHead(BBoxHead):\nclip_box = clip_bbox(boxes_per_image, im_shape[i])\nif self.training:\nkeep = nonempty_bbox(cl... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix training in cascade_rcnn (#2386) |
499,395 | 22.03.2021 21:49:03 | -28,800 | 118e8b75233651205630e9aa3d9fa1cc5944d2a2 | fix data format in ppyolo | [
{
"change_type": "MODIFY",
"old_path": "dygraph/ppdet/modeling/necks/yolo_fpn.py",
"new_path": "dygraph/ppdet/modeling/necks/yolo_fpn.py",
"diff": "@@ -313,6 +313,7 @@ class PPYOLOFPN(nn.Layer):\nself.spp = kwargs.get('spp', False)\nself.conv_block_num = kwargs.get('conv_block_num', 2)\n+ self.data_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix data format in ppyolo (#2403) |
499,304 | 26.03.2021 19:51:11 | -28,800 | 9262d2767fef89044c7e7b3610b6b4a21b40638c | add SSLD model | [
{
"change_type": "MODIFY",
"old_path": "configs/solov2/README.md",
"new_path": "configs/solov2/README.md",
"diff": "@@ -19,8 +19,8 @@ SOLOv2 (Segmenting Objects by Locations) is a fast instance segmentation framewo\n| BlendMask | R50-FPN | True | 3x | 37.8 | 13.5 | V100 | - | - |\n| SOLOv2 (Paper) |... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add SSLD model (#2421) |
499,333 | 27.03.2021 12:49:52 | -28,800 | 5ba7e85a4eb68cf0d88b942e9f537b9d2b34f049 | update install doc, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/source/dataset.py",
"new_path": "ppdet/data/source/dataset.py",
"diff": "@@ -129,6 +129,9 @@ class ImageFolder(DetDataset):\nself.roidbs = None\nself.sample_num = sample_num\n+ def check_or_download_dataset(self):\n+ return\n+\ndef parse_dataset(sel... | Python | Apache License 2.0 | paddlepaddle/paddledetection | update install doc, test=document_fix (#2441) |
499,333 | 29.03.2021 14:36:47 | -28,800 | f5aba69cce87dda09f8d577e51039c7b8208c1cb | update dist api | [
{
"change_type": "MODIFY",
"old_path": "ppdet/engine/callbacks.py",
"new_path": "ppdet/engine/callbacks.py",
"diff": "@@ -23,7 +23,7 @@ import six\nimport numpy as np\nimport paddle\n-from paddle.distributed import ParallelEnv\n+import paddle.distributed as dist\nfrom ppdet.utils.checkpoint import s... | Python | Apache License 2.0 | paddlepaddle/paddledetection | update dist api (#2443) |
499,331 | 29.03.2021 15:56:26 | -28,800 | c8e4a3d792212ed37c084ab62dd25a7042dd328e | fix tensorrt bug of ssd, update doc of tensorrt, test=documet_fix | [
{
"change_type": "MODIFY",
"old_path": "ppdet/engine/export_utils.py",
"new_path": "ppdet/engine/export_utils.py",
"diff": "@@ -28,7 +28,7 @@ logger = setup_logger('ppdet.engine')\n# Global dictionary\nTRT_MIN_SUBGRAPH = {\n'YOLO': 3,\n- 'SSD': 40,\n+ 'SSD': 60,\n'RCNN': 40,\n'RetinaNet': 40,\n'Effi... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix tensorrt bug of ssd, update doc of tensorrt, test=documet_fix (#2410) |
499,396 | 29.03.2021 20:37:08 | -28,800 | cfbba55cf0e7cf0bfab78d2e4234898c5bd125d6 | fis the issue in function _get_shared_memory_size_in_M in the case of that there are multiple 'shm' space | [
{
"change_type": "ADD",
"old_path": "ppdet/.DS_Store",
"new_path": "ppdet/.DS_Store",
"diff": "Binary files /dev/null and b/ppdet/.DS_Store differ\n"
},
{
"change_type": "MODIFY",
"old_path": "ppdet/data/shm_utils.py",
"new_path": "ppdet/data/shm_utils.py",
"diff": "@@ -58,10 +58... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fis the issue in function _get_shared_memory_size_in_M in the case of that there are multiple 'shm' space (#2434) |
499,304 | 30.03.2021 21:49:02 | -28,800 | 707461b935d327b23d3a0f3c9dedf540663f3831 | support python eval in face_detection | [
{
"change_type": "MODIFY",
"old_path": ".gitignore",
"new_path": ".gitignore",
"diff": "@@ -26,7 +26,7 @@ __pycache__/\n/lib64/\n/output/\n/inference_model/\n-/dygraph/output_inference/\n+/output_inference/\n/parts/\n/sdist/\n/var/\n"
}
] | Python | Apache License 2.0 | paddlepaddle/paddledetection | support python eval in face_detection (#2469) |
499,304 | 31.03.2021 09:48:11 | -28,800 | d9f3d9c6721f7eb7e615ebbbc6e79dd69b0013e8 | fix christmas app bug | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "static/application/christmas/element_source/background/1.json",
"diff": "+{\"path\":\"/Users/yuzhiliang/Downloads/docsmall-2/12.png\",\"outputs\":{\"object\":[{\"name\":\"local\",\"bndbox\":{\"xmin\":282,\"ymin\":366,\"xmax\":3451,\"ymax\":4603}... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix christmas app bug (#2474) |
499,339 | 31.03.2021 21:11:58 | -28,800 | 8847982855db9ee8cca350215c6a8549ddcbe43e | add ssd comments test=develop | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/architectures/ssd.py",
"new_path": "ppdet/modeling/architectures/ssd.py",
"diff": "@@ -24,6 +24,15 @@ __all__ = ['SSD']\n@register\nclass SSD(BaseArch):\n+ \"\"\"\n+ Single Shot MultiBox Detector, see https://arxiv.org/abs/1512.02325\n+\n+ Args:... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add ssd comments test=develop (#2466) |
499,313 | 01.04.2021 11:09:27 | -28,800 | 46ecfc35b6fd4e9b78a4bf3203119e194f411e40 | fix COCO error in validation in train | [
{
"change_type": "MODIFY",
"old_path": "ppdet/engine/trainer.py",
"new_path": "ppdet/engine/trainer.py",
"diff": "@@ -128,11 +128,23 @@ class Trainer(object):\nbias = self.cfg['bias'] if 'bias' in self.cfg else 0\noutput_eval = self.cfg['output_eval'] \\\nif 'output_eval' in self.cfg else None\n+\n+... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix COCO error in validation in train (#2483) |
499,395 | 06.04.2021 14:34:07 | -28,800 | e6e8603b8e5a42f198965b8b512f094b5eff4f6d | fix cpp infer for lack of gflags | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/src/main.cc",
"new_path": "deploy/cpp/src/main.cc",
"diff": "#endif\n#include \"include/object_detector.h\"\n+#include <gflags/gflags.h>\nDEFINE_string(model_dir, \"\", \"Path of inference model\");\n"
},
{
"change_type": "MODIFY",
"old_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix cpp infer for lack of gflags (#2499) |
499,395 | 08.04.2021 14:35:41 | -28,800 | 4d566f1c8a6b7226fce6f4557f57cbd0fbdeb5b9 | yolo annotations | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/architectures/yolo.py",
"new_path": "ppdet/modeling/architectures/yolo.py",
"diff": "@@ -20,6 +20,16 @@ class YOLOv3(BaseArch):\nyolo_head='YOLOv3Head',\npost_process='BBoxPostProcess',\ndata_format='NCHW'):\n+ \"\"\"\n+ YOLOv3 network, see http... | Python | Apache License 2.0 | paddlepaddle/paddledetection | yolo annotations (#2542) |
499,395 | 10.04.2021 14:59:54 | -28,800 | 7b8c9eab565e997013db1e02ef575d04a50093a0 | fix COCODataset while eval without annotations | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/source/coco.py",
"new_path": "ppdet/data/source/coco.py",
"diff": "@@ -90,6 +90,13 @@ class COCODataSet(DetDataset):\nim_w, im_h, img_id))\ncontinue\n+ coco_rec = {\n+ 'im_file': im_path,\n+ 'im_id': np.array([img_id]),\n+ 'h': im_h,\n+ 'w': im_w,\n... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix COCODataset while eval without annotations (#2571) |
499,395 | 12.04.2021 11:09:50 | -28,800 | e3d703d7feb1ce3bae19abe68925339149fda93c | fix gridmask op and modify some comments | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/transform/gridmask_utils.py",
"new_path": "ppdet/data/transform/gridmask_utils.py",
"diff": "@@ -45,7 +45,7 @@ class GridMask(object):\nself.prob = self.st_prob * min(1, 1.0 * curr_iter / self.upper_iter)\nif np.random.rand() > self.prob:\nreturn x\... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix gridmask op and modify some comments (#2558) |
499,339 | 13.04.2021 19:17:49 | -28,800 | 62d8263650adf499188e8236bc32894d25ad8c91 | add save only in eval/train test=develop | [
{
"change_type": "MODIFY",
"old_path": "ppdet/engine/trainer.py",
"new_path": "ppdet/engine/trainer.py",
"diff": "@@ -125,6 +125,8 @@ class Trainer(object):\nbias = self.cfg['bias'] if 'bias' in self.cfg else 0\noutput_eval = self.cfg['output_eval'] \\\nif 'output_eval' in self.cfg else None\n+ save... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add save only in eval/train test=develop (#2604) |
499,304 | 13.04.2021 20:01:10 | -28,800 | 0ed43ce60423632fb5218da476bebad5c740c17c | fix quant export_model | [
{
"change_type": "MODIFY",
"old_path": "ppdet/slim/__init__.py",
"new_path": "ppdet/slim/__init__.py",
"diff": "@@ -54,6 +54,7 @@ def build_slim_model(cfg, slim_cfg, mode='train'):\nload_pretrain_weight(model, cfg.pretrain_weights)\nslim = create(cfg.slim)\ncfg['model'] = slim(model)\n+ cfg['slim'] ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix quant export_model (#2606) |
499,304 | 14.04.2021 11:27:58 | -28,800 | 2d949d191966a55f5a36f0407d3110871e642add | fix bbox_loss in cascade rcnn | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/heads/cascade_head.py",
"new_path": "ppdet/modeling/heads/cascade_head.py",
"diff": "@@ -137,7 +137,7 @@ class CascadeXConvNormHead(nn.Layer):\n@register\nclass CascadeHead(BBoxHead):\n__shared__ = ['num_classes', 'num_cascade_stages']\n- __inje... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix bbox_loss in cascade rcnn (#2614) |
499,313 | 14.04.2021 20:40:41 | -28,800 | f24c1b05e6070bbf571e538aed217e32ba873072 | fix re-download not trigger when weights update | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/download.py",
"new_path": "ppdet/utils/download.py",
"diff": "@@ -23,6 +23,8 @@ import shutil\nimport requests\nimport tqdm\nimport hashlib\n+import base64\n+import binascii\nimport tarfile\nimport zipfile\n@@ -257,12 +259,13 @@ def get_path(url, r... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix re-download not trigger when weights update (#2617) |
499,304 | 15.04.2021 10:29:17 | -28,800 | 133375ebda742812cc298cacfa0080b772f4b5b4 | supplement trt_int8 function | [
{
"change_type": "MODIFY",
"old_path": "deploy/cpp/src/main.cc",
"new_path": "deploy/cpp/src/main.cc",
"diff": "@@ -37,7 +37,7 @@ DEFINE_string(image_path, \"\", \"Path of input image\");\nDEFINE_string(video_path, \"\", \"Path of input video\");\nDEFINE_bool(use_gpu, false, \"Infering with GPU or C... | Python | Apache License 2.0 | paddlepaddle/paddledetection | supplement trt_int8 function (#2619) |
499,333 | 15.04.2021 11:14:45 | -28,800 | bd5d850981add643c276dd372ec8256d855fa73a | fix res5 | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/backbones/resnet.py",
"new_path": "ppdet/modeling/backbones/resnet.py",
"diff": "@@ -590,8 +590,9 @@ class Res5Head(nn.Layer):\nif depth < 50:\nfeat_in = 256\nna = NameAdapter(self)\n+ block = BottleNeck if depth >= 50 else BasicBlock\nself.res5... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix res5 (#2631) |
499,304 | 15.04.2021 13:58:28 | -28,800 | ac701833d3421d5f0ffc88b1dc6df6fc5053e61b | fix yolo config | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/ppyolo_r50vd_dcn_voc.yml",
"new_path": "configs/ppyolo/ppyolo_r50vd_dcn_voc.yml",
"diff": "@@ -11,13 +11,13 @@ weights: output/ppyolo_r50vd_dcn_voc/model_final\nTrainReader:\nbatch_transforms:\n- - BatchRandomResizeOp: {target_size: [320, 352, 3... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix yolo config (#2635) |
499,304 | 15.04.2021 20:28:09 | -28,800 | 6ad5973d0fbefbe2ce16c50974f49b5b37c87251 | fix ignore warning | [
{
"change_type": "MODIFY",
"old_path": "tools/eval.py",
"new_path": "tools/eval.py",
"diff": "@@ -22,6 +22,10 @@ parent_path = os.path.abspath(os.path.join(__file__, *(['..'] * 2)))\nif parent_path not in sys.path:\nsys.path.append(parent_path)\n+# ignore warning log\n+import warnings\n+warnings.fil... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix ignore warning (#2647) |
499,331 | 15.04.2021 22:45:43 | -28,800 | 19e1e65201bc9d84ab231454e767c820fcad7e97 | fix bug of import and update doc | [
{
"change_type": "MODIFY",
"old_path": "configs/datasets/dota.yml",
"new_path": "configs/datasets/dota.yml",
"diff": "@@ -5,16 +5,16 @@ TrainDataset:\n!COCODataSet\nimage_dir: trainval_split/images\nanno_path: trainval_split/s2anet_trainval_paddle_coco.json\n- dataset_dir: /paddle/dataset/DOTA_1024_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix bug of import and update doc (#2642) |
499,304 | 15.04.2021 22:49:03 | -28,800 | 2bf965f0a2cc33cdb7b7d38c1daf274a92547c7f | fix use_calib_mode in cpp infer | [
{
"change_type": "MODIFY",
"old_path": "static/deploy/cpp/src/object_detector.cc",
"new_path": "static/deploy/cpp/src/object_detector.cc",
"diff": "@@ -33,6 +33,7 @@ void ObjectDetector::LoadModel(const std::string& model_dir,\nif (use_gpu) {\nconfig.EnableUseGpu(100, gpu_id);\nconfig.SwitchIrOptim(... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix use_calib_mode in cpp infer (#2650) |
499,333 | 16.04.2021 10:23:14 | -28,800 | 6c79e88ccec2f649fc19d39cd3f85b86e90851d0 | fix ttfhead & doc link | [
{
"change_type": "MODIFY",
"old_path": "configs/fcos/README.md",
"new_path": "configs/fcos/README.md",
"diff": "@@ -19,7 +19,6 @@ FCOS (Fully Convolutional One-Stage Object Detection) is a fast anchor-free obje\n**Notes:**\n- FCOS is trained on COCO train2017 dataset and evaluated on val2017 results... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix ttfhead & doc link (#2654) |
499,331 | 16.04.2021 10:53:08 | -28,800 | 5aafa1b674a0a037531639e485b6311bebfb88da | fix stride data type | [
{
"change_type": "MODIFY",
"old_path": "configs/faster_rcnn/_base_/faster_reader.yml",
"new_path": "configs/faster_rcnn/_base_/faster_reader.yml",
"diff": "@@ -7,7 +7,7 @@ TrainReader:\n- NormalizeImage: {is_scale: true, mean: [0.485,0.456,0.406], std: [0.229, 0.224,0.225]}\n- Permute: {}\nbatch_tra... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix stride data type (#2644) |
499,298 | 16.04.2021 22:17:12 | -28,800 | abd1aefb7c7270d0c30947dd6060cfcafea31eac | fix yolo config modelzoo, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/_base_/ppyolo_mbv3_large.yml",
"new_path": "configs/ppyolo/_base_/ppyolo_mbv3_large.yml",
"diff": "@@ -18,7 +18,7 @@ MobileNetV3:\nfeature_maps: [13, 16]\nPPYOLOFPN:\n- feat_channels: [160, 368]\n+ in_channels: [160, 368]\ncoord_conv: true\nconv... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix yolo config modelzoo, test=document_fix (#2663) |
499,395 | 16.04.2021 22:27:55 | -28,800 | 56bb6f7660597449f1a169b3f4f3744db5d92cb2 | modify ppyolo docs, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/README.md",
"new_path": "configs/ppyolo/README.md",
"diff": "@@ -49,8 +49,8 @@ PP-YOLO improved performance and speed of YOLOv3 with following methods:\n| PP-YOLO | 4 | 32 | ResNet18vd | 512 | 29.2 | 29.5 | 357.1 | 657.9 | [model](https://paddle... | Python | Apache License 2.0 | paddlepaddle/paddledetection | modify ppyolo docs, test=document_fix (#2666) |
499,395 | 17.04.2021 00:31:08 | -28,800 | 762d0152a9c4ee05fc42028ec42a972a594ed704 | modify link and fps of ppyolo, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "static/configs/ppyolo/README.md",
"new_path": "static/configs/ppyolo/README.md",
"diff": "@@ -53,8 +53,8 @@ PP-YOLO improved performance and speed of YOLOv3 with following methods:\n| PP-YOLO | 4 | 32 | ResNet18vd | 512 | 29.3 | 29.5 | 357.1 | 657.9 | [model](... | Python | Apache License 2.0 | paddlepaddle/paddledetection | modify link and fps of ppyolo, test=document_fix (#2671) |
499,333 | 17.04.2021 00:42:47 | -28,800 | edd24ca12844364b8feb50e6b180722403f9501f | simplify log of loading weights | [
{
"change_type": "MODIFY",
"old_path": "README_en.md",
"new_path": "README_en.md",
"diff": "@@ -188,7 +188,7 @@ The relationship between COCO mAP and FPS on Tesla V100 of representative models\n- `PP-YOLO` achieves mAP of 45.9% on COCO and 72.9FPS on Tesla V100. Both precision and speed surpass [YOL... | Python | Apache License 2.0 | paddlepaddle/paddledetection | simplify log of loading weights (#2673) |
499,298 | 17.04.2021 22:48:20 | -28,800 | f0bf5be8d401334ff755725354c5990e2d132166 | add bias test doc for yolo ppyolo pafnet(#2675) | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/README.md",
"new_path": "configs/ppyolo/README.md",
"diff": "@@ -132,7 +132,27 @@ CUDA_VISIBLE_DEVICES=0 python tools/eval.py -c configs/ppyolo/ppyolo_test.yml -o\nEvaluation results will be saved in `bbox.json`, compress it into a `zip` package... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add bias test doc for yolo ppyolo pafnet(#2675) |
499,304 | 19.04.2021 11:12:34 | -28,800 | 56aa92d5e8e106374975d6ff5668f774e23aa1ef | fix wider_face init | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/source/__init__.py",
"new_path": "ppdet/data/source/__init__.py",
"diff": "# limitations under the License.\nfrom . import coco\n-# TODO add voc and widerface dataset\nfrom . import voc\n-#from . import widerface\n+from . import widerface\nfrom . im... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix wider_face init (#2686) |
499,395 | 19.04.2021 11:20:40 | -28,800 | 085791a225315cd0653c63fa7580ac520602a2a9 | fix ppyolo docs, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/README.md",
"new_path": "configs/ppyolo/README.md",
"diff": "@@ -175,7 +175,7 @@ For inference deployment or benchmard, model exported with `tools/export_model.p\npython tools/export_model.py -c configs/ppyolo/ppyolo_r50vd_dcn_1x_coco.yml -o wei... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix ppyolo docs, test=document_fix (#2689) |
499,395 | 19.04.2021 11:27:21 | -28,800 | ecc33160dc7fa54ecc0f9aeb9fc9f50cfab61c74 | modify gridmask op | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/transform/gridmask_utils.py",
"new_path": "ppdet/data/transform/gridmask_utils.py",
"diff": "@@ -45,7 +45,8 @@ class Gridmask(object):\nself.prob = self.st_prob * min(1, 1.0 * curr_iter / self.upper_iter)\nif np.random.rand() > self.prob:\nreturn x\... | Python | Apache License 2.0 | paddlepaddle/paddledetection | modify gridmask op (#2692) |
499,333 | 19.04.2021 13:21:39 | -28,800 | 67e0d761e1afa8d274d5b3a75fbe3ccccf49244a | fix gridmask | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/transform/gridmask_utils.py",
"new_path": "ppdet/data/transform/gridmask_utils.py",
"diff": "@@ -45,8 +45,7 @@ class Gridmask(object):\nself.prob = self.st_prob * min(1, 1.0 * curr_iter / self.upper_iter)\nif np.random.rand() > self.prob:\nreturn x\... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix gridmask (#2694) |
499,313 | 21.04.2021 10:12:37 | -28,800 | 765e80c038caafa78816f4955067df96c4fa8e92 | fix voc difficult not found & map_res empty | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/source/voc.py",
"new_path": "ppdet/data/source/voc.py",
"diff": "@@ -117,7 +117,12 @@ class VOCDataSet(DetDataset):\ndifficult = []\nfor i, obj in enumerate(objs):\ncname = obj.find('name').text\n- _difficult = int(obj.find('difficult').text)\n+\n+ ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix voc difficult not found & map_res empty (#2714) |
499,395 | 25.04.2021 11:27:19 | -28,800 | ee25d70189a98db4310312d5190216cb610f74b5 | eval with ema weight while training | [
{
"change_type": "MODIFY",
"old_path": "ppdet/engine/callbacks.py",
"new_path": "ppdet/engine/callbacks.py",
"diff": "@@ -26,7 +26,6 @@ import paddle\nimport paddle.distributed as dist\nfrom ppdet.utils.checkpoint import save_model\n-from ppdet.optimizer import ModelEMA\nfrom ppdet.utils.logger impo... | Python | Apache License 2.0 | paddlepaddle/paddledetection | eval with ema weight while training (#2747) |
499,348 | 26.04.2021 16:26:54 | -28,800 | e76236514896a5a8a90ab90a9bb4d46b87d2725b | pose bottomup higherhrnet: model | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/architectures/__init__.py",
"new_path": "ppdet/modeling/architectures/__init__.py",
"diff": "@@ -15,6 +15,7 @@ from . import fcos\nfrom . import solov2\nfrom . import ttfnet\nfrom . import s2anet\n+from . import keypoint_hrhrnet\nfrom .meta_arch... | Python | Apache License 2.0 | paddlepaddle/paddledetection | pose bottomup higherhrnet: model (#2638) |
499,395 | 26.04.2021 18:02:22 | -28,800 | 5298ee05b398e19980a52e89a5f12e6e63d3afe7 | fix feat_channel and polish voc config | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/_base_/ppyolo_r18vd.yml",
"new_path": "configs/ppyolo/_base_/ppyolo_r18vd.yml",
"diff": "@@ -19,7 +19,6 @@ ResNet:\nnorm_decay: 0.\nPPYOLOFPN:\n- feat_channels: [512, 512]\ndrop_block: true\nblock_size: 3\nkeep_prob: 0.9\n"
},
{
"change_... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix feat_channel and polish voc config (#2765) |
499,395 | 26.04.2021 18:04:16 | -28,800 | 63b9d6ee0d8f4b51c1adea4e68a383efb2a19b9f | add anchor_cluster and mmodify docs | [
{
"change_type": "MODIFY",
"old_path": "configs/ppyolo/README.md",
"new_path": "configs/ppyolo/README.md",
"diff": "@@ -108,6 +108,12 @@ Training PP-YOLO on 8 GPUs with following command(all commands should be run und\npython -m paddle.distributed.launch --log_dir=./ppyolo_dygraph/ --gpus 0,1,2,3,4,... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add anchor_cluster and mmodify docs (#2768) |
499,304 | 27.04.2021 17:01:14 | -28,800 | c0404286126561daffd66718d5d5dad8a8544715 | fix downlaod weights dir of static model | [
{
"change_type": "MODIFY",
"old_path": "static/ppdet/utils/download.py",
"new_path": "static/ppdet/utils/download.py",
"diff": "@@ -37,7 +37,7 @@ __all__ = [\n'create_voc_list'\n]\n-WEIGHTS_HOME = osp.expanduser(\"~/.cache/paddle/weights\")\n+WEIGHTS_HOME = osp.expanduser(\"~/.cache/paddle/weights/s... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix downlaod weights dir of static model (#2775) |
499,395 | 06.05.2021 11:08:49 | -28,800 | 2b7209c386d71691cbc25d0fd5b61358f728a084 | fix num_classes | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/reader.py",
"new_path": "ppdet/data/reader.py",
"diff": "@@ -44,9 +44,11 @@ class Compose(object):\nfor t in self.transforms:\nfor k, v in t.items():\nop_cls = getattr(transform, k)\n- self.transforms_cls.append(op_cls(**v))\n- if hasattr(op_cls, 'n... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix num_classes (#2844) |
499,333 | 06.05.2021 13:34:10 | -28,800 | 22c6e80aab3c5512fd3a461bbba405254a63d353 | support voc format in fcos & ttfnet | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/transform/batch_operators.py",
"new_path": "ppdet/data/transform/batch_operators.py",
"diff": "@@ -452,9 +452,10 @@ class Gt2FCOSTarget(BaseOperator):\nsample['centerness{}'.format(lvl)] = np.reshape(\nctn_targets_by_level[lvl], newshape=[grid_h, gr... | Python | Apache License 2.0 | paddlepaddle/paddledetection | support voc format in fcos & ttfnet (#2875) |
499,395 | 07.05.2021 11:52:16 | -28,800 | 0adc553aaa10f105bb338d4505c8bdc447025724 | fix problem while applying ema without training | [
{
"change_type": "MODIFY",
"old_path": "ppdet/optimizer.py",
"new_path": "ppdet/optimizer.py",
"diff": "@@ -248,6 +248,8 @@ class ModelEMA(object):\nself.step += 1\ndef apply(self):\n+ if self.step == 0:\n+ return self.state_dict\nstate_dict = dict()\nfor k, v in self.state_dict.items():\nv = v / (1... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix problem while applying ema without training (#2839) |
499,304 | 07.05.2021 12:46:34 | -28,800 | 99579e6a04d0245d38f4535aa4bb81c07a7d3506 | remove condition block && some todo | [
{
"change_type": "MODIFY",
"old_path": "deploy/python/visualize.py",
"new_path": "deploy/python/visualize.py",
"diff": "@@ -38,10 +38,10 @@ def visualize_box_mask(im, results, labels, threshold=0.5):\nim = Image.open(im).convert('RGB')\nelse:\nim = Image.fromarray(im)\n- if 'masks' in results and 'b... | Python | Apache License 2.0 | paddlepaddle/paddledetection | remove condition block && some todo (#2882) |
499,348 | 07.05.2021 17:48:24 | -28,800 | 90bfe0094f7e60237fac7c2142ced53f8ab6f4be | add hrnet mdoeling;
rename all Hrnet to HRNet | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/architectures/__init__.py",
"new_path": "ppdet/modeling/architectures/__init__.py",
"diff": "@@ -16,6 +16,7 @@ from . import solov2\nfrom . import ttfnet\nfrom . import s2anet\nfrom . import keypoint_hrhrnet\n+from . import keypoint_hrnet\nfrom ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add hrnet mdoeling; (#2889)
rename all Hrnet to HRNet |
499,348 | 07.05.2021 20:44:20 | -28,800 | a06a6258fa0227a90c6406bc0372132c10f40aea | add hrnet data, engine, metrics; rename Hrnet to HRNet | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/source/keypoint_coco.py",
"new_path": "ppdet/data/source/keypoint_coco.py",
"diff": "import os\nimport cv2\nimport numpy as np\n+import json\nimport copy\n-# TODO: unify xtococotools and pycocotools\nimport pycocotools\nfrom pycocotools.coco import ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add hrnet data, engine, metrics; rename Hrnet to HRNet (#2890) |
499,333 | 08.05.2021 10:22:13 | -28,800 | c7c0568fa8df67695c38f9a27e25b069af96f12d | add ags module | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/heads/ttf_head.py",
"new_path": "ppdet/modeling/heads/ttf_head.py",
"diff": "@@ -200,6 +200,9 @@ class TTFHead(nn.Layer):\nlite_head(bool): whether use lite version. False by default.\nnorm_type (string): norm type, 'sync_bn', 'bn', 'gn' are opt... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add ags module (#2885) |
499,333 | 08.05.2021 13:57:06 | -28,800 | 00775c89df7f69aa28daf1acef7a49f02eb250f6 | fix loading rcnn pretrain | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/checkpoint.py",
"new_path": "ppdet/utils/checkpoint.py",
"diff": "@@ -159,6 +159,16 @@ def load_pretrain_weight(model, pretrain_weight):\nparam_state_dict = paddle.load(weights_path)\nignore_weights = set()\n+ # hack: fit for faster rcnn. Pretrain ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix loading rcnn pretrain (#2897) |
499,348 | 08.05.2021 15:22:22 | -28,800 | f331f0a102b7f981866ae42daa4a140b59545cf7 | add configs of hrhrnet&hrnet | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml",
"diff": "+use_gpu: true\n+log_iter: 1\n+save_dir: output\n+snapshot_epoch: 10\n+weights: output/higherhrnet_hrnet_v1_512/290\n+epoch: 300\n+num_joints: &num_joints 17\n+flip_perm: &fli... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add configs of hrhrnet&hrnet (#2817) |
499,304 | 08.05.2021 17:02:03 | -28,800 | 7ebb6f2945bcd82fd215e295313586e42cfbb4cf | add static lite demo | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "static/deploy/lite/Makefile",
"diff": "+ARM_ABI = arm8\n+export ARM_ABI\n+\n+include ../Makefile.def\n+\n+LITE_ROOT=../../../\n+\n+THIRD_PARTY_DIR=${LITE_ROOT}/third_party\n+\n+OPENCV_VERSION=opencv4.1.0\n+\n+OPENCV_LIBS = ${THIRD_PARTY_DIR}/${O... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add static lite demo (#2899) |
499,304 | 10.05.2021 11:17:26 | -28,800 | 7aff0dcee04bfbaf15d3f1cf79ed25484eeac381 | add ppyolov2 voc config | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "configs/ppyolo/ppyolov2_r50vd_dcn_voc.yml",
"diff": "+_BASE_: [\n+ '../datasets/voc.yml',\n+ '../runtime.yml',\n+ './_base_/ppyolov2_r50vd_dcn.yml',\n+ './_base_/optimizer_365e.yml',\n+ './_base_/ppyolov2_reader.yml',\n+]\n+\n+snapshot_epoch: 83... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add ppyolov2 voc config (#2916) |
499,333 | 10.05.2021 17:30:08 | -28,800 | 75d29d16e953af12666c2a1e63f69bc83cc727aa | refine lr schedule & download message | [
{
"change_type": "MODIFY",
"old_path": "configs/ssd/_base_/optimizer_120e.yml",
"new_path": "configs/ssd/_base_/optimizer_120e.yml",
"diff": "@@ -5,7 +5,7 @@ LearningRate:\nschedulers:\n- !PiecewiseDecay\nmilestones: [40, 60, 80, 100]\n- values: [0.001, 0.0005, 0.00025, 0.0001, 0.00001]\n+ gamma: [0... | Python | Apache License 2.0 | paddlepaddle/paddledetection | refine lr schedule & download message (#2921) |
499,333 | 10.05.2021 18:56:54 | -28,800 | 03326eea40fcb0df271a82c08c9e9be10b710866 | update poly resize | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/transform/operators.py",
"new_path": "ppdet/data/transform/operators.py",
"diff": "@@ -634,7 +634,7 @@ class Resize(BaseOperator):\ndef apply_segm(self, segms, im_size, scale):\ndef _resize_poly(poly, im_scale_x, im_scale_y):\n- resized_poly = np.ar... | Python | Apache License 2.0 | paddlepaddle/paddledetection | update poly resize (#2929) |
499,348 | 10.05.2021 19:55:08 | -28,800 | 8336430146c460d2777b89df7fbffc3e9a20fe1c | hrnet fix | [
{
"change_type": "MODIFY",
"old_path": "configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512_swahr.yml",
"new_path": "configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512_swahr.yml",
"diff": "@@ -2,7 +2,7 @@ use_gpu: true\nlog_iter: 10\nsave_dir: output\nsnapshot_epoch: 10\n-weights: output/high... | Python | Apache License 2.0 | paddlepaddle/paddledetection | hrnet fix (#2920) |
499,304 | 11.05.2021 11:32:38 | -28,800 | 385f9bbd62252d07aabb0fbd49cf33b2597d0ca0 | fix static prune bug | [
{
"change_type": "MODIFY",
"old_path": "static/slim/prune/prune.py",
"new_path": "static/slim/prune/prune.py",
"diff": "@@ -203,21 +203,7 @@ def main():\nassert FLAGS.prune_criterion in ['l1_norm', 'geometry_median'], \\\n\"unsupported prune criterion {}\".format(FLAGS.prune_criterion)\npruner = Pru... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix static prune bug (#2933) |
499,395 | 11.05.2021 21:13:03 | -28,800 | 30dda1ea5e38b59f267012dcd89d643edb38dee8 | fix some wrong links, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/INSTALL.md",
"new_path": "docs/tutorials/INSTALL.md",
"diff": "@@ -123,7 +123,7 @@ OK\n```\n# Predict an image by GPU\nexport CUDA_VISIBLE_DEVICES=0\n-python tools/infer.py -c configs/ppyolo/ppyolo_r50vd_dcn_1x_coco.yml -o use_gpu=true weights=h... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix some wrong links, test=document_fix (#2948) |
499,304 | 12.05.2021 09:51:55 | -28,800 | 9623cb9e00e9412d51b52c55ad002bfb9b8e0120 | fix parameter of static cpp_infer | [
{
"change_type": "MODIFY",
"old_path": "static/deploy/cpp/src/main.cc",
"new_path": "static/deploy/cpp/src/main.cc",
"diff": "DEFINE_string(model_dir, \"\", \"Path of inference model\");\n-DEFINE_string(image_path, \"\", \"Path of input image\");\n+DEFINE_string(image_file, \"\", \"Path of input ima... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix parameter of static cpp_infer (#2955) |
499,313 | 12.05.2021 11:29:10 | -28,800 | 1aa7e2e40f0cf3a859ba89b476218108dc4b9d9a | fix static notice & GETTING_STARTED | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/GETTING_STARTED.md",
"new_path": "docs/tutorials/GETTING_STARTED.md",
"diff": "@@ -28,9 +28,9 @@ export CUDA_VISIBLE_DEVICES=0,1,2,3,4,5,6,7\npython -m paddle.distributed.launch --gpus 0,1,2,3,4,5,6,7 tools/train.py -c configs/faster_rcnn/faster... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix static notice & GETTING_STARTED (#2809) |
499,348 | 12.05.2021 13:15:44 | -28,800 | 912833f2013685b5d1f634ed3889aab701628ecc | change hrhrnet eval heat_thresh=0.1; fix crowdpose eval | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/source/keypoint_coco.py",
"new_path": "ppdet/data/source/keypoint_coco.py",
"diff": "@@ -60,7 +60,6 @@ class KeypointBottomUpBaseDataset(DetDataset):\nself.test_mode = test_mode\nself.ann_info['num_joints'] = num_joints\n-\nself.img_ids = []\ndef __... | Python | Apache License 2.0 | paddlepaddle/paddledetection | change hrhrnet eval heat_thresh=0.1; fix crowdpose eval (#2945) |
499,348 | 13.05.2021 11:28:57 | -28,800 | 33dca040b7c72c5bce52faa6c6e6594fd4b10cf9 | fix batchsize=1 backward error | [
{
"change_type": "MODIFY",
"old_path": "configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml",
"new_path": "configs/keypoint/higherhrnet/higherhrnet_hrnet_w32_512.yml",
"diff": "use_gpu: true\n-log_iter: 1\n+log_iter: 10\nsave_dir: output\nsnapshot_epoch: 10\n-weights: output/higherhrnet_hrnet... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix batchsize=1 backward error (#2973) |
499,333 | 13.05.2021 14:05:30 | -28,800 | 76ab27803fce08f2a1b3743afff72966007e6d10 | fix return_index in nms | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/ops.py",
"new_path": "ppdet/modeling/ops.py",
"diff": "@@ -987,7 +987,7 @@ def multiclass_nms(bboxes,\n'normalized', normalized)\noutput, index, nms_rois_num = core.ops.multiclass_nms3(bboxes, scores,\nrois_num, *attrs)\n- if return_index:\n+ if... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix return_index in nms (#2980) |
499,339 | 13.05.2021 18:43:06 | -28,800 | 4e88bec59cc15f1f980ba9ad61f760c552062861 | add res2net | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "configs/res2net/README.md",
"diff": "+# Res2Net\n+\n+## Introduction\n+\n+- Res2Net: A New Multi-scale Backbone Architecture: [https://arxiv.org/abs/1904.01169](https://arxiv.org/abs/1904.01169)\n+\n+```\n+@article{DBLP:journals/corr/abs-1904-01... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add res2net (#2992) |
499,304 | 14.05.2021 15:12:18 | -28,800 | f6139c054e2a75b5871a4a4adbe4375362b7fec7 | fix static trt_int8 inference | [
{
"change_type": "MODIFY",
"old_path": "ppdet/engine/callbacks.py",
"new_path": "ppdet/engine/callbacks.py",
"diff": "@@ -158,7 +158,9 @@ class Checkpointer(Callback):\nif dist.get_world_size() < 2 or dist.get_rank() == 0:\nif mode == 'train':\nend_epoch = self.model.cfg.epoch\n- if epoch_id % self.... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix static trt_int8 inference (#3001) |
499,298 | 14.05.2021 19:39:01 | -28,800 | 2bf412c6406073f48515e1ec2e9bffdd1ed83d5f | [MOT] add JDE other scales and fix MOT doc | [
{
"change_type": "MODIFY",
"old_path": "configs/mot/deepsort/README.md",
"new_path": "configs/mot/deepsort/README.md",
"diff": "@@ -37,17 +37,17 @@ det_results_dir\n```bash\n# use weights released in PaddleDetection model zoo\n-CUDA_VISIBLE_DEVICES=0 python tools/eval_mot.py -c configs/mot/jde/jde_d... | Python | Apache License 2.0 | paddlepaddle/paddledetection | [MOT] add JDE other scales and fix MOT doc (#3008) |
499,333 | 14.05.2021 22:05:33 | -28,800 | c1bd0ac245b8aa4943f3c23ae12bfbda2257eb2a | fix none output in rcnn | [
{
"change_type": "MODIFY",
"old_path": "ppdet/modeling/post_process.py",
"new_path": "ppdet/modeling/post_process.py",
"diff": "@@ -86,6 +86,13 @@ class BBoxPostProcess(object):\npred_result (Tensor): The final prediction results with shape [N, 6]\nincluding labels, scores and bboxes.\n\"\"\"\n+\n+ ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix none output in rcnn (#2984) |
499,395 | 17.05.2021 10:49:27 | -28,800 | 9dadaae7e131e0f7b5f0f460601950430f6a9097 | fix some problem in docs, test=document_fix | [
{
"change_type": "MODIFY",
"old_path": "configs/pedestrian/README.md",
"new_path": "configs/pedestrian/README.md",
"diff": "@@ -45,6 +45,6 @@ python -u tools/infer.py -c configs/pedestrian/pedestrian_yolov3_darknet.yml \\\nSome inference results are visualized below:\n- |
499,333 | 17.05.2021 21:09:24 | -28,800 | 34968d61e66197b18d9c2c06a7da2796798db95e | [doc] update link(#3043) | [
{
"change_type": "MODIFY",
"old_path": "configs/res2net/README.md",
"new_path": "configs/res2net/README.md",
"diff": "| Backbone | Type | Image/gpu | Lr schd | Inf time (fps) | Box AP | Mask AP | Download | Configs |\n| :---------------------- | :------------- | :-------: | :-----: | :------------: ... | Python | Apache License 2.0 | paddlepaddle/paddledetection | [doc] update link(#3043) |
499,348 | 17.05.2021 22:43:37 | -28,800 | d7ff713eccb24adcb4d29c954f132f87435caff1 | add pose demo | [
{
"change_type": "ADD",
"old_path": "configs/keypoint/football_keypoint.gif",
"new_path": "configs/keypoint/football_keypoint.gif",
"diff": "Binary files /dev/null and b/configs/keypoint/football_keypoint.gif differ\n"
},
{
"change_type": "ADD",
"old_path": "demo/hrnet_demo.jpg",
"ne... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add pose demo (#3042) |
499,304 | 18.05.2021 09:53:50 | -28,800 | b7c50f5bd1b8d02661ae3313d5719e5bbaafb6cb | fix oid model export model | [
{
"change_type": "MODIFY",
"old_path": "static/ppdet/utils/export_utils.py",
"new_path": "static/ppdet/utils/export_utils.py",
"diff": "@@ -67,6 +67,8 @@ def parse_reader(reader_cfg, metric, arch):\nfrom ppdet.utils.voc_eval import get_category_info\nelif metric == \"WIDERFACE\":\nfrom ppdet.utils.w... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix oid model export model (#3037) |
499,357 | 18.05.2021 14:06:29 | -28,800 | fa4741956ec9d805df40e892baebb04d30f61fcb | add yolov3 darknet config to develop, test=kunlun | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "static/configs/yolov3_darknet_roadsign_kunlun.yml",
"diff": "+architecture: YOLOv3\n+use_gpu: false\n+use_xpu: true\n+max_iters: 1200\n+log_iter: 1\n+save_dir: output\n+snapshot_iter: 200\n+metric: VOC\n+map_type: integral\n+pretrain_weights: ht... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add yolov3 darknet config to develop, test=kunlun (#3035) |
499,331 | 18.05.2021 20:41:30 | -28,800 | 2b7a999d43933d65fc9df35a3b42c1d5f9bb7b18 | move optimizer of roadsign config to a single file | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "configs/yolov3/_base_/optimizer_40e.yml",
"diff": "+epoch: 40\n+\n+LearningRate:\n+ base_lr: 0.0001\n+ schedulers:\n+ - !PiecewiseDecay\n+ gamma: 0.1\n+ milestones:\n+ - 32\n+ - 36\n+ - !LinearWarmup\n+ start_factor: 0.3333333333333333\n+ steps:... | Python | Apache License 2.0 | paddlepaddle/paddledetection | move optimizer of roadsign config to a single file (#3055) |
499,313 | 20.05.2021 11:27:27 | -28,800 | e0ad4dbef8e6edb60a25a107ff896f4bbce6b335 | fix shm check failed in windows/Mac system | [
{
"change_type": "MODIFY",
"old_path": "ppdet/data/reader.py",
"new_path": "ppdet/data/reader.py",
"diff": "@@ -180,7 +180,10 @@ class BaseDataLoader(object):\nelse:\nself._batch_sampler = batch_sampler\n- use_shared_memory = self.use_shared_memory\n+ # DataLoader do not start sub-process in Windows... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix shm check failed in windows/Mac system (#3069) |
499,313 | 20.05.2021 15:18:10 | -28,800 | 47101cfbb875f17240f185f9378338d44a6e8540 | fix install error on Python36 | [
{
"change_type": "MODIFY",
"old_path": "docs/tutorials/INSTALL.md",
"new_path": "docs/tutorials/INSTALL.md",
"diff": "@@ -101,6 +101,8 @@ pip install -r requirements.txt\n```pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI```\n+2. If you are using Python <= 3.6, `py... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix install error on Python36 (#3083) |
499,348 | 20.05.2021 16:13:09 | -28,800 | 19124833e324cf3f5ddc4799a38f50b5d1432875 | add mot_pose_demo;sych with det benchmark codes | [
{
"change_type": "MODIFY",
"old_path": "deploy/python/infer.py",
"new_path": "deploy/python/infer.py",
"diff": "@@ -541,8 +541,8 @@ def main():\ndetector.det_times.info(average=True)\nelse:\nmems = {\n- 'cpu_rss': detector.cpu_mem / len(img_list),\n- 'gpu_rss': detector.gpu_mem / len(img_list),\n+ '... | Python | Apache License 2.0 | paddlepaddle/paddledetection | add mot_pose_demo;sych with det benchmark codes (#3079) |
499,313 | 20.05.2021 17:41:17 | -28,800 | b274f7ad271968159169c60639a8fa7375d51141 | fix download in windows | [
{
"change_type": "MODIFY",
"old_path": "ppdet/utils/download.py",
"new_path": "ppdet/utils/download.py",
"diff": "@@ -18,6 +18,7 @@ from __future__ import print_function\nimport os\nimport os.path as osp\n+import sys\nimport yaml\nimport shutil\nimport requests\n@@ -349,6 +350,11 @@ def _download(ur... | Python | Apache License 2.0 | paddlepaddle/paddledetection | fix download in windows (#3084) |
499,333 | 20.05.2021 18:24:34 | -28,800 | fd49465754d8d1a691c6eb57afe96836811d6af6 | correct min_subgraph_size in ttfnet | [
{
"change_type": "MODIFY",
"old_path": "deploy/python/infer.py",
"new_path": "deploy/python/infer.py",
"diff": "@@ -123,14 +123,14 @@ class Detector(object):\nMaskRCNN's results include 'masks': np.ndarray:\nshape: [N, im_h, im_w]\n'''\n- self.det_times.postprocess_time_s.start()\n+ self.det_times.p... | Python | Apache License 2.0 | paddlepaddle/paddledetection | correct min_subgraph_size in ttfnet (#3088) |
499,313 | 21.05.2021 10:31:03 | -28,800 | 875277e8c35fe4ea840ee97384a5072f622f2fa0 | polish version log in build_wheel.sh | [
{
"change_type": "MODIFY",
"old_path": "scripts/build_wheel.sh",
"new_path": "scripts/build_wheel.sh",
"diff": "@@ -133,11 +133,23 @@ build_and_install\nunittest\ncleanup\n+# get Paddle version\nPADDLE_VERSION=`python -c \"import paddle; print(paddle.version.full_version)\"`\nPADDLE_COMMIT=`python -... | Python | Apache License 2.0 | paddlepaddle/paddledetection | polish version log in build_wheel.sh (#3095) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.