Skip to content

Commit 335d778

Browse files
committedJul 13, 2021
Initial commit
0 parents  commit 335d778

File tree

86 files changed

+10300
-0
lines changed

Some content is hidden

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

86 files changed

+10300
-0
lines changed
 

‎.gitignore

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# output dir
2+
output
3+
instant_test_output
4+
inference_test_output
5+
6+
7+
*.png
8+
*.json
9+
*.diff
10+
*.jpg
11+
!/projects/DensePose/doc/images/*.jpg
12+
13+
# compilation and distribution
14+
__pycache__
15+
_ext
16+
*.pyc
17+
*.pyd
18+
*.so
19+
*.dll
20+
*.egg-info/
21+
build/
22+
dist/
23+
wheels/
24+
25+
# pytorch/python/numpy formats
26+
*.pth
27+
*.pkl
28+
*.npy
29+
*.ts
30+
model_ts*.txt
31+
32+
# ipython/jupyter notebooks
33+
*.ipynb
34+
**/.ipynb_checkpoints/
35+
36+
# Editor temporaries
37+
*.swn
38+
*.swo
39+
*.swp
40+
*~
41+
42+
# editor settings
43+
.idea
44+
.vscode
45+
_darcs
46+
47+
# project dirs
48+
/detectron2/model_zoo/configs
49+
/datasets/*
50+
!/datasets/*.*
51+
/projects/*/datasets
52+
/models
53+
/snippet

‎CODE_OF_CONDUCT.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Code of Conduct
2+
3+
Facebook has adopted a Code of Conduct that we expect project participants to adhere to.
4+
Please read the [full text](https://code.fb.com/codeofconduct/)
5+
so that you can understand what actions will and will not be tolerated.

0 commit comments

Comments
 (0)
Please sign in to comment.