Skip to content

Commit c33c764

Browse files
committed
Pre-release Init Code
1 parent e9ec7a4 commit c33c764

Some content is hidden

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

44 files changed

+6838
-2
lines changed

.gitignore

+159
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,159 @@
1+
semantic_encoding/logs/*
2+
semantic_encoding/models/*
3+
semantic_encoding/results/
4+
semantic_encoding/_utils/*.html
5+
semantic_encoding/_utils/*.npz
6+
semantic_encoding/_utils/*.npy
7+
semantic_encoding/_utils/*.ipynb
8+
semantic_encoding/_utils/*.png
9+
semantic_encoding/_utils/*.pdf
10+
semantic_encoding/_utils/*.gif
11+
semantic_encoding/data/*
12+
semantic_encoding/eval/*.gif
13+
semantic_encoding/eval/*.pdf
14+
semantic_encoding/eval/*.png
15+
semantic_encoding/eval/results/*
16+
semantic_encoding/datasets/VaTeX/raw_videos/*
17+
semantic_encoding/resources/vatex_training_v1.0.json
18+
semantic_encoding/resources/vatex_validation_v1.0.json
19+
semantic_encoding/resources/glove.6B.300d.txt
20+
rl_fast_forward/*.csv
21+
rl_fast_forward/*.json
22+
rl_fast_forward/results/*
23+
rl_fast_forward/REINFORCE/*logs*/*
24+
rl_fast_forward/models/*
25+
rl_fast_forward/eval/*.pdf
26+
rl_fast_forward/eval/*.avi
27+
rl_fast_forward/eval/*.png
28+
rl_fast_forward/eval/*.csv
29+
rl_fast_forward/eval/*.json
30+
rl_fast_forward/eval/*.npz
31+
rl_fast_forward/eval/*.txt
32+
rl_fast_forward/logs/*
33+
rl_fast_forward/resources/YouCook2/*
34+
rl_fast_forward/resources/COIN/*
35+
36+
# Byte-compiled / optimized / DLL files
37+
__pycache__/
38+
*.py[cod]
39+
*$py.class
40+
41+
# C extensions
42+
*.so
43+
44+
# Distribution / packaging
45+
.Python
46+
build/
47+
develop-eggs/
48+
dist/
49+
downloads/
50+
eggs/
51+
.eggs/
52+
lib/
53+
lib64/
54+
parts/
55+
sdist/
56+
var/
57+
wheels/
58+
pip-wheel-metadata/
59+
share/python-wheels/
60+
*.egg-info/
61+
.installed.cfg
62+
*.egg
63+
MANIFEST
64+
65+
# PyInstaller
66+
# Usually these files are written by a python script from a template
67+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
68+
*.manifest
69+
*.spec
70+
71+
# Installer logs
72+
pip-log.txt
73+
pip-delete-this-directory.txt
74+
75+
# Unit test / coverage reports
76+
htmlcov/
77+
.tox/
78+
.nox/
79+
.coverage
80+
.coverage.*
81+
.cache
82+
nosetests.xml
83+
coverage.xml
84+
*.cover
85+
.hypothesis/
86+
.pytest_cache/
87+
88+
# Translations
89+
*.mo
90+
*.pot
91+
92+
# Django stuff:
93+
*.log
94+
local_settings.py
95+
db.sqlite3
96+
db.sqlite3-journal
97+
98+
# Flask stuff:
99+
instance/
100+
.webassets-cache
101+
102+
# Scrapy stuff:
103+
.scrapy
104+
105+
# Sphinx documentation
106+
docs/_build/
107+
108+
# PyBuilder
109+
target/
110+
111+
# Jupyter Notebook
112+
.ipynb_checkpoints
113+
114+
# IPython
115+
profile_default/
116+
ipython_config.py
117+
118+
# pyenv
119+
.python-version
120+
121+
# pipenv
122+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
123+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
124+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
125+
# install all needed dependencies.
126+
#Pipfile.lock
127+
128+
# celery beat schedule file
129+
celerybeat-schedule
130+
131+
# SageMath parsed files
132+
*.sage.py
133+
134+
# Environments
135+
.env
136+
.venv
137+
env/
138+
venv/
139+
ENV/
140+
env.bak/
141+
venv.bak/
142+
143+
# Spyder project settings
144+
.spyderproject
145+
.spyproject
146+
147+
# Rope project settings
148+
.ropeproject
149+
150+
# mkdocs documentation
151+
/site
152+
153+
# mypy
154+
.mypy_cache/
155+
.dmypy.json
156+
dmypy.json
157+
158+
# Pyre type checker
159+
.pyre/

0 commit comments

Comments
 (0)