Skip to content

Commit

Permalink
CenterNet model added
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyoon-young committed Jun 19, 2019
1 parent d6f889e commit 1346dba
Show file tree
Hide file tree
Showing 45 changed files with 16,225 additions and 2 deletions.
111 changes: 111 additions & 0 deletions CenterNet/.gitignore
@@ -0,0 +1,111 @@
legacy/*
.DS_Store
debug/*
*.DS_Store
*.json
*.mat
src/.vscode/*
preds/*
*.h5
*.pth
*.checkpoint
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
258 changes: 258 additions & 0 deletions CenterNet/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions CenterNet/.travis.yml
@@ -0,0 +1,20 @@
group: travis_latest
dist: xenial # ubuntu-16.04
language: python
cache: pip
python:
- 3.6
- 3.7
install:
- pip install flake8
- pip install -r requirements.txt
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- true # add other tests here
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
2 changes: 2 additions & 0 deletions CenterNet/experiments/ctdet_coco_resdcn18.sh
Expand Up @@ -8,3 +8,5 @@ python test.py ctdet --exp_id coco_resdcn18 --arch resdcn_18 --keep_res --resume
# multi scale test
python test.py ctdet --exp_id coco_resdcn18 --arch resdcn_18 --keep_res --resume --flip_test --test_scales 0.5,0.75,1,1.25,1.5
cd ..


Binary file added CenterNet/models/ctdet_coco_dla_2x.pth
Binary file not shown.
Binary file added CenterNet/src/__pycache__/_init_paths.cpython-36.pyc
Binary file not shown.
Binary file added CenterNet/src/lib/__pycache__/opts.cpython-36.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 1346dba

Please sign in to comment.