Diff of /.gitignore [000000] .. [6d389a]

Switch to unified view

a b/.gitignore
1
results
2
# Byte-compiled / optimized / DLL files
3
__pycache__/
4
*.py[cod]
5
*$py.class
6
**/*.pyc
7
8
# C extensions
9
*.so
10
11
# Distribution / packaging
12
.Python
13
build/
14
develop-eggs/
15
dist/
16
downloads/
17
eggs/
18
.eggs/
19
lib/
20
lib64/
21
parts/
22
sdist/
23
var/
24
wheels/
25
*.egg-info/
26
.installed.cfg
27
*.egg
28
MANIFEST
29
30
# PyInstaller
31
#  Usually these files are written by a python script from a template
32
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
33
*.manifest
34
*.spec
35
36
# Installer logs
37
pip-log.txt
38
pip-delete-this-directory.txt
39
40
# Unit test / coverage reports
41
htmlcov/
42
.tox/
43
.coverage
44
.coverage.*
45
.cache
46
nosetests.xml
47
coverage.xml
48
*.cover
49
.hypothesis/
50
.pytest_cache/
51
52
# Translations
53
*.mo
54
*.pot
55
56
# Django stuff:
57
*.log
58
local_settings.py
59
db.sqlite3
60
61
# Flask stuff:
62
instance/
63
.webassets-cache
64
65
# Scrapy stuff:
66
.scrapy
67
68
# Sphinx documentation
69
docs/_build/
70
71
# PyBuilder
72
target/
73
74
# Jupyter Notebook
75
.ipynb_checkpoints
76
77
# pyenv
78
.python-version
79
80
# celery beat schedule file
81
celerybeat-schedule
82
83
# SageMath parsed files
84
*.sage.py
85
86
# Environments
87
.env
88
.venv
89
env/
90
venv/
91
ENV/
92
env.bak/
93
venv.bak/
94
95
# Spyder project settings
96
.spyderproject
97
.spyproject
98
99
# Rope project settings
100
.ropeproject
101
102
# mkdocs documentation
103
/site
104
105
# mypy
106
.mypy_cache/
107
108
# custom
109
/data
110
.vscode
111
.idea
112
*.pkl
113
*.pkl.json
114
*.log.json
115
benchlist.txt
116
work_dirs/
117
118
# Pytorch
119
*.pth
120
121
# Profile
122
*.prof
123
124
# lmdb
125
*.mdb
126
127
# unignore some data file in tests/data
128
!tests/data/**/*.pkl
129
!tests/data/**/*.pkl.json
130
!tests/data/**/*.log.json
131
!tests/data/**/*.pth
132
133
# avoid soft links created by MIM
134
mmaction/configs/*
135
mmaction/tools/*
136
137
*.ipynb
138
139
# unignore ipython notebook files in demo
140
!demo/*.ipynb
141
mmaction/.mim