Skip to content

Commit a41f064

Browse files
authored
Merge pull request #25 from WEHI-ResearchComputing/merge-dd
Merge DynamicDet
2 parents 18fcbb0 + b8de5e9 commit a41f064

45 files changed

Lines changed: 11804 additions & 5 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitmodules

Lines changed: 0 additions & 4 deletions
This file was deleted.

partinet/DynamicDet

Lines changed: 0 additions & 1 deletion
This file was deleted.

partinet/DynamicDet/.gitignore

Lines changed: 239 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,239 @@
1+
# Repo-specific GitIgnore ----------------------------------------------------------------------------------------------
2+
storage.googleapis.com
3+
runs/*
4+
data/*
5+
data/images/*
6+
!data/*.yaml
7+
!data/hyps
8+
!data/scripts
9+
!data/images
10+
!data/images/zidane.jpg
11+
!data/images/bus.jpg
12+
!data/*.sh
13+
14+
results*.csv
15+
16+
# Datasets -------------------------------------------------------------------------------------------------------------
17+
coco
18+
coco128
19+
VOC
20+
21+
coco2017labels-segments.zip
22+
test2017.zip
23+
train2017.zip
24+
val2017.zip
25+
26+
# MATLAB GitIgnore -----------------------------------------------------------------------------------------------------
27+
*.m~
28+
*.mat
29+
!targets*.mat
30+
31+
# Neural Network weights -----------------------------------------------------------------------------------------------
32+
*.weights
33+
*.pt
34+
*.pb
35+
*.onnx
36+
*.engine
37+
*.mlmodel
38+
*.torchscript
39+
*.tflite
40+
*.h5
41+
*_saved_model/
42+
*_web_model/
43+
*_openvino_model/
44+
darknet53.conv.74
45+
yolov3-tiny.conv.15
46+
*.ptl
47+
*.trt
48+
49+
# GitHub Python GitIgnore ----------------------------------------------------------------------------------------------
50+
# Byte-compiled / optimized / DLL files
51+
__pycache__/
52+
*.py[cod]
53+
*$py.class
54+
55+
# C extensions
56+
*.so
57+
58+
# Distribution / packaging
59+
.Python
60+
env/
61+
build/
62+
develop-eggs/
63+
dist/
64+
downloads/
65+
eggs/
66+
.eggs/
67+
lib/
68+
lib64/
69+
parts/
70+
sdist/
71+
var/
72+
wheels/
73+
*.egg-info/
74+
/wandb/
75+
.installed.cfg
76+
*.egg
77+
78+
79+
# PyInstaller
80+
# Usually these files are written by a python script from a template
81+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
82+
*.manifest
83+
*.spec
84+
85+
# Installer logs
86+
pip-log.txt
87+
pip-delete-this-directory.txt
88+
89+
# Unit test / coverage reports
90+
htmlcov/
91+
.tox/
92+
.coverage
93+
.coverage.*
94+
.cache
95+
nosetests.xml
96+
coverage.xml
97+
*.cover
98+
.hypothesis/
99+
100+
# Translations
101+
*.mo
102+
*.pot
103+
104+
# Django stuff:
105+
*.log
106+
local_settings.py
107+
108+
# Flask stuff:
109+
instance/
110+
.webassets-cache
111+
112+
# Scrapy stuff:
113+
.scrapy
114+
115+
# Sphinx documentation
116+
docs/_build/
117+
118+
# PyBuilder
119+
target/
120+
121+
# Jupyter Notebook
122+
.ipynb_checkpoints
123+
124+
# pyenv
125+
.python-version
126+
127+
# celery beat schedule file
128+
celerybeat-schedule
129+
130+
# SageMath parsed files
131+
*.sage.py
132+
133+
# dotenv
134+
.env
135+
136+
# virtualenv
137+
.venv*
138+
venv*/
139+
ENV*/
140+
141+
# Spyder project settings
142+
.spyderproject
143+
.spyproject
144+
145+
# Rope project settings
146+
.ropeproject
147+
148+
# mkdocs documentation
149+
/site
150+
151+
# mypy
152+
.mypy_cache/
153+
154+
155+
# https://github.com/github/gitignore/blob/master/Global/macOS.gitignore -----------------------------------------------
156+
157+
# General
158+
.DS_Store
159+
.AppleDouble
160+
.LSOverride
161+
162+
# Icon must end with two \r
163+
Icon
164+
Icon?
165+
166+
# Thumbnails
167+
._*
168+
169+
# Files that might appear in the root of a volume
170+
.DocumentRevisions-V100
171+
.fseventsd
172+
.Spotlight-V100
173+
.TemporaryItems
174+
.Trashes
175+
.VolumeIcon.icns
176+
.com.apple.timemachine.donotpresent
177+
178+
# Directories potentially created on remote AFP share
179+
.AppleDB
180+
.AppleDesktop
181+
Network Trash Folder
182+
Temporary Items
183+
.apdisk
184+
185+
186+
# https://github.com/github/gitignore/blob/master/Global/JetBrains.gitignore
187+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
188+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
189+
190+
# User-specific stuff:
191+
.idea/*
192+
.idea/**/workspace.xml
193+
.idea/**/tasks.xml
194+
.idea/dictionaries
195+
.html # Bokeh Plots
196+
.pg # TensorFlow Frozen Graphs
197+
.avi # videos
198+
199+
# Sensitive or high-churn files:
200+
.idea/**/dataSources/
201+
.idea/**/dataSources.ids
202+
.idea/**/dataSources.local.xml
203+
.idea/**/sqlDataSources.xml
204+
.idea/**/dynamic.xml
205+
.idea/**/uiDesigner.xml
206+
207+
# Gradle:
208+
.idea/**/gradle.xml
209+
.idea/**/libraries
210+
211+
# CMake
212+
cmake-build-debug/
213+
cmake-build-release/
214+
215+
# Mongo Explorer plugin:
216+
.idea/**/mongoSettings.xml
217+
218+
## File-based project format:
219+
*.iws
220+
221+
## Plugin-specific files:
222+
223+
# IntelliJ
224+
out/
225+
226+
# mpeltonen/sbt-idea plugin
227+
.idea_modules/
228+
229+
# JIRA plugin
230+
atlassian-ide-plugin.xml
231+
232+
# Cursive Clojure plugin
233+
.idea/replstate.xml
234+
235+
# Crashlytics plugin (for Android Studio and IntelliJ)
236+
com_crashlytics_export_strings.xml
237+
crashlytics.properties
238+
crashlytics-build.properties
239+
fabric.properties

partinet/DynamicDet/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# DynamicDet [[arXiv]](https://arxiv.org/abs/2304.05552)
2+
3+
This repo contains the a form of [**"DynamicDet: A Unified Dynamic Architecture for Object Detection"**](https://arxiv.org/abs/2304.05552). It's intended to be used as a submodule of the [PartiNet](https://github.com/WEHI-ResearchComputing/PartiNet/) package.
4+
5+
See the [original repo](https://github.com/WEHI-ResearchComputing/DynamicDet/) for more information and licensing.

0 commit comments

Comments
 (0)