Commit Graph

51 Commits

Author SHA1 Message Date
Xingyi Zhou 4c50fd3a46 update model zoo link 2022-11-10 20:54:48 -08:00
Xingyi Zhou 2b7692c377 add links 2020-06-21 19:53:44 -05:00
Xingyi Zhou 1085662179
Merge pull request #629 from sirykd/bug-get-alpha
Fix 3D box orientation post-processing
2020-03-05 19:05:03 -06:00
Dmytro Siryk 46a4ef279c
Fix 3D box orientation post-processing
Use arctan2 instead of arctan.
2020-02-27 00:17:38 +02:00
Xingyi Zhou 8ef87b4335
Merge pull request #400 from jscsmk/master
Fix typo
2019-11-18 12:59:25 -06:00
Xingyi Zhou 813b2b05af
Merge pull request #390 from Gcaya/patch-1
FIx typo.
2019-11-10 20:09:57 -06:00
Xingyi Zhou 909248ed2f
Merge pull request #460 from xuannianz/official
Add link to a keras implementation.
2019-11-10 20:09:04 -06:00
xuannianz 89b29be229 Update README 2019-11-11 09:56:16 +08:00
jscsmk 55ced5c633 Fix typo modle to model 2019-10-11 18:25:09 +09:00
jscsmk 002263e07f Fix typo tranpose to transpose 2019-10-11 18:22:43 +09:00
Guillaume Caya-Letourneau 5e17c70bc7
Update DEVELOP.md 2019-10-06 10:58:02 -04:00
Xingyi Zhou 9efed05d53
Merge pull request #371 from chengzhengxin/master
ctdet_decode support cat_spec_wh
2019-09-20 15:42:32 -05:00
chengzhengxin 8d95cc380f modified ctdet_decode to support cat_spec_wh 2019-09-20 14:58:12 +08:00
Xingyi Zhou 9781e7defd
Merge pull request #362 from lbin/master
fixed some tiny bugs
2019-09-18 09:31:13 -05:00
lbin e7f5b9eccc fixed print bug when using load_model args 2019-09-17 17:26:57 +08:00
lbin a93fdb0f78 fixed dlav0-get_pose_net with wrong params 2019-09-16 15:03:14 +08:00
XingyiZhou 6cba4748bd add third-party resources 2019-09-15 16:49:56 -05:00
XingyiZhou 71eea7b815 Update DLA license, fix typos, and improve logs for FAQs 2019-09-15 16:33:00 -05:00
Xingyi Zhou 6f14f51cd3
Merge pull request #292 from PJunhyuk/master
Fix typo
2019-09-15 15:20:44 -05:00
Junhyuk Park a290f77e25
Fix typo 2019-08-23 21:36:00 +09:00
Xingyi Zhou a5a0483beb
Merge pull request #133 from Ridhwanluthra/patch-1
pascal voc testing requirements
2019-06-09 16:50:29 -07:00
Ridhwan Luthra e3b84d34b3
pascal voc testing requirements
These packages are needed when working with pascal voc
2019-06-08 16:58:12 -05:00
Xingyi Zhou b328816ecf add third-party implementation, fix data setup instruction, and fix typo in dlav0 2019-05-07 11:54:35 -05:00
Xingyi Zhou b1b6991251 update kitti eval 2019-05-01 22:22:43 -05:00
Xingyi Zhou d4700b55c8
Merge pull request #26 from Sundrops/master
make the function signature consistent
2019-04-30 20:36:22 -05:00
Xingyi Zhou 3a1e9c668c revert pascal evaluation format 2019-04-26 10:53:05 -05:00
任广辉 c9fa20b72f make the function signature consistent 2019-04-24 16:01:07 +08:00
Xingyi Zhou a412990c06 fix pascal evaluation format 2019-04-23 10:39:03 -05:00
Xingyi Zhou d56bfd94cf fix pascal data setup 2019-04-22 22:36:50 -05:00
Xingyi Zhou cefeb33baf
Merge pull request #17 from cclauss/patch-1
Add comments to explain why nms = None
2019-04-22 20:37:03 -05:00
cclauss 1316d370fe
Add comments to explain why nms = None
Explicit is better than implicit.
2019-04-21 08:10:15 +02:00
Xingyi Zhou c4792e3955
Merge pull request #16 from xingyizhou/revert-13-patch-1
Revert "from model.nms_wrapper import nms for lines 132 and 168"
2019-04-20 22:07:23 -07:00
Xingyi Zhou 88fafa1b0f
Revert "from model.nms_wrapper import nms for lines 132 and 168" 2019-04-20 22:05:48 -07:00
Dequan Wang 8611fbb954
Merge pull request #13 from cclauss/patch-1
from model.nms_wrapper import nms for lines 132 and 168
2019-04-20 16:00:03 -07:00
cclauss 922228813b
from model.nms_wrapper import nms for lines 132 and 168
[flake8](http://flake8.pycqa.org) testing of https://github.com/xingyizhou/CenterNet on Python 3.7.1

$ __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__
```
./src/lib/models/networks/dlav0.py:417:5: F821 undefined name 'dla'
    dla.BatchNorm = bn
    ^
./src/tools/voc_eval_lib/model/test.py:132:14: F821 undefined name 'nms'
      keep = nms(dets, thresh)
             ^
./src/tools/voc_eval_lib/model/test.py:168:14: F821 undefined name 'nms'
      keep = nms(cls_dets, cfg.TEST.NMS)
             ^
3     F821 undefined name 'dla'
3
```
__E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.
* F821: undefined name `name`
* F822: undefined name `name` in `__all__`
* F823: local variable name referenced before assignment
* E901: SyntaxError or IndentationError
* E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
2019-04-20 08:32:41 +02:00
Dequan Wang 5919b13176
Merge pull request #11 from cclauss/patch-1
Add automated testing on Python 3.6 and 3.7 on Travis CI
2019-04-19 16:42:28 -07:00
cclauss 1ce96c48a8
Add automated testing on Python 3.6 and 3.7 on Travis CI
The owner of the this repo would need to go to https://travis-ci.com/profile, log in with GitHub credentials, select the __free plan__, and flip the repository switch on to enable free automated testing of all pull requests.  Travis will lint with flake8 and then run __python runtests__.
2019-04-19 08:19:06 +02:00
Xingyi Zhou 720779af97
Merge pull request #10 from dannykuo25/patch-1
Update README.md
2019-04-19 00:52:16 -05:00
Danny Chien-Kuo Kuo 6599f8df4f
Update README.md
tackle word misspelling issue
2019-04-19 11:18:49 +08:00
Xingyi Zhou d19b524315 fix legacy typos in code 2019-04-18 17:42:04 -05:00
Xingyi Zhou 7f411457b4 Merge branch 'master' of github.com:xingyizhou/CenterNet 2019-04-18 17:35:19 -05:00
Xingyi Zhou 7ac3e96a79
Merge pull request #6 from cclauss/patch-1
Undefined name: opt.K --> self.opt.K
2019-04-18 17:36:11 -05:00
Xingyi Zhou 61f7c5c884 modify readme 2019-04-18 17:35:17 -05:00
cclauss d0067e886d
Undefined name: opt.K --> self.opt.K 2019-04-18 10:13:10 +02:00
Xingyi Zhou d133939e9e fix typo in experiments 2019-04-17 17:04:36 -05:00
XingyiZhou be7019023b add experiments and fix typo 2019-04-17 09:53:59 -05:00
Xingyi Zhou d74e0e9392 add arXiv 2019-04-16 19:44:58 -05:00
Xingyi Zhou 819e0d0dde change readme 2019-04-16 17:25:27 -05:00
Xingyi Zhou 4a6c42ff53 fix typo 2019-04-16 13:44:32 -05:00
Xingyi Zhou f16ef636dd init 2019-04-16 13:36:21 -05:00