Skip to content

Commit 9700f4a

Browse files
committed
release
0 parents  commit 9700f4a

Some content is hidden

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

53 files changed

+15516
-0
lines changed

.gitignore

+218
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,218 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,python,jupyternotebooks
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,python,jupyternotebooks
3+
4+
### JupyterNotebooks ###
5+
# gitignore template for Jupyter Notebooks
6+
# website: http://jupyter.org/
7+
8+
.ipynb_checkpoints
9+
*/.ipynb_checkpoints/*
10+
11+
# IPython
12+
profile_default/
13+
ipython_config.py
14+
15+
# Remove previous ipynb_checkpoints
16+
# git rm -r .ipynb_checkpoints/
17+
18+
### Python ###
19+
# Byte-compiled / optimized / DLL files
20+
__pycache__/
21+
*.py[cod]
22+
*$py.class
23+
24+
# C extensions
25+
*.so
26+
27+
# Distribution / packaging
28+
.Python
29+
build/
30+
develop-eggs/
31+
dist/
32+
downloads/
33+
eggs/
34+
.eggs/
35+
lib/
36+
lib64/
37+
parts/
38+
sdist/
39+
var/
40+
wheels/
41+
share/python-wheels/
42+
*.egg-info/
43+
.installed.cfg
44+
*.egg
45+
MANIFEST
46+
47+
# PyInstaller
48+
# Usually these files are written by a python script from a template
49+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
50+
*.manifest
51+
*.spec
52+
53+
# Installer logs
54+
pip-log.txt
55+
pip-delete-this-directory.txt
56+
57+
# Unit test / coverage reports
58+
htmlcov/
59+
.tox/
60+
.nox/
61+
.coverage
62+
.coverage.*
63+
.cache
64+
nosetests.xml
65+
coverage.xml
66+
*.cover
67+
*.py,cover
68+
.hypothesis/
69+
.pytest_cache/
70+
cover/
71+
72+
# Translations
73+
*.mo
74+
*.pot
75+
76+
# Django stuff:
77+
*.log
78+
local_settings.py
79+
db.sqlite3
80+
db.sqlite3-journal
81+
82+
# Flask stuff:
83+
instance/
84+
.webassets-cache
85+
86+
# Scrapy stuff:
87+
.scrapy
88+
89+
# Sphinx documentation
90+
docs/_build/
91+
92+
# PyBuilder
93+
.pybuilder/
94+
target/
95+
96+
# Jupyter Notebook
97+
98+
# IPython
99+
100+
# pyenv
101+
# For a library or package, you might want to ignore these files since the code is
102+
# intended to run in multiple environments; otherwise, check them in:
103+
# .python-version
104+
105+
# pipenv
106+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
107+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
108+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
109+
# install all needed dependencies.
110+
#Pipfile.lock
111+
112+
# poetry
113+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
114+
# This is especially recommended for binary packages to ensure reproducibility, and is more
115+
# commonly ignored for libraries.
116+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
117+
#poetry.lock
118+
119+
# pdm
120+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
121+
#pdm.lock
122+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
123+
# in version control.
124+
# https://pdm.fming.dev/#use-with-ide
125+
.pdm.toml
126+
127+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128+
__pypackages__/
129+
130+
# Celery stuff
131+
celerybeat-schedule
132+
celerybeat.pid
133+
134+
# SageMath parsed files
135+
*.sage.py
136+
137+
# Environments
138+
.env
139+
.venv
140+
env/
141+
venv/
142+
ENV/
143+
env.bak/
144+
venv.bak/
145+
146+
# Spyder project settings
147+
.spyderproject
148+
.spyproject
149+
150+
# Rope project settings
151+
.ropeproject
152+
153+
# mkdocs documentation
154+
/site
155+
156+
# mypy
157+
.mypy_cache/
158+
.dmypy.json
159+
dmypy.json
160+
161+
# Pyre type checker
162+
.pyre/
163+
164+
# pytype static type analyzer
165+
.pytype/
166+
167+
# Cython debug symbols
168+
cython_debug/
169+
170+
# PyCharm
171+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
172+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
173+
# and can be added to the global gitignore or merged into this file. For a more nuclear
174+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
175+
#.idea/
176+
177+
### Python Patch ###
178+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
179+
poetry.toml
180+
181+
182+
### VisualStudioCode ###
183+
.vscode/*
184+
!.vscode/settings.json
185+
!.vscode/tasks.json
186+
!.vscode/launch.json
187+
!.vscode/extensions.json
188+
!.vscode/*.code-snippets
189+
190+
# Local History for Visual Studio Code
191+
.history/
192+
193+
# Built Visual Studio Code Extensions
194+
*.vsix
195+
196+
### VisualStudioCode Patch ###
197+
# Ignore all local history of files
198+
.history
199+
.ionide
200+
201+
# End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,python,jupyternotebooks
202+
n
203+
*cache/
204+
images/
205+
/chekpoints/
206+
/outputs/
207+
/results/
208+
/api.key
209+
/.vscode/
210+
/wandb/
211+
*.pyscratch
212+
*.key
213+
MKT/
214+
RLIP/
215+
scratchwork/
216+
blip2_runner.py
217+
LAVIS/
218+
pretrained_models/

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "GLIP"]
2+
path = GLIP
3+
url = https://github.com/sachit-menon/GLIP.git

GLIP

Submodule GLIP added at 919cd34

0 commit comments

Comments
 (0)