Skip to content

Commit ef475d1

Browse files
committed
Anonymous commit
0 parents  commit ef475d1

Some content is hidden

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

46 files changed

+13888
-0
lines changed

.gitignore

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
.ipynb_checkpoints
2+
.idea
3+
bower_components
4+
node_modules
5+
venv
6+
7+
*.ts.map
8+
9+
*~
10+
*.so
11+
.DS_Store
12+
._.DS_Store
13+
*.swp
14+
15+
# Byte-compiled / optimized / DLL files
16+
__pycache__/
17+
*.py[cod]
18+
19+
# C extensions
20+
*.so
21+
22+
# Distribution / packaging
23+
.Python
24+
env/
25+
build/
26+
develop-eggs/
27+
dist/
28+
downloads/
29+
eggs/
30+
.eggs/
31+
lib/
32+
lib64/
33+
parts/
34+
sdist/
35+
var/
36+
*.egg-info/
37+
.installed.cfg
38+
*.egg
39+
40+
# PyInstaller
41+
# Usually these files are written by a python script from a template
42+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
43+
*.manifest
44+
*.spec
45+
46+
# Installer logs
47+
pip-log.txt
48+
pip-delete-this-directory.txt
49+
50+
# Unit test / coverage reports
51+
htmlcov/
52+
.tox/
53+
.coverage
54+
.coverage.*
55+
.cache
56+
nosetests.xml
57+
coverage.xml
58+
*,cover
59+
60+
# Translations
61+
*.mo
62+
*.pot
63+
64+
# Django stuff:
65+
*.log
66+
67+
# Sphinx documentation
68+
docs/_build/
69+
70+
# PyBuilder
71+
target/
72+
73+
data/
74+
log/
75+
log-archive/
76+
sbtach_log/
77+
78+
machine.file.*
79+
slurm-*.out
80+
81+
slurm_script/
82+
83+
log_test/
84+
85+
configs/decompose/tune/
86+
87+
*slurm*.sh
88+
89+
log-others/

.vscode/launch.json

+256
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,256 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python: Current File",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal"
13+
},
14+
{
15+
"name": "train_original_no_warp",
16+
"type": "python",
17+
"request": "launch",
18+
"program": "train.py",
19+
"console": "integratedTerminal",
20+
"args": [
21+
"--base_folder",
22+
"log/debug/original_no_warp",
23+
"--gin_bindings=\"data_dir='./data/hypernerf/vrig-chicken/'\"",
24+
"--gin_configs",
25+
"configs/hypernerf_vrig_no_warp.gin",
26+
"--debug"
27+
]
28+
},
29+
{
30+
"name": "train_original",
31+
"type": "python",
32+
"request": "launch",
33+
"program": "train.py",
34+
"console": "integratedTerminal",
35+
"args": [
36+
"--base_folder",
37+
"log/debug/original",
38+
"--gin_bindings=\"data_dir='./data/kubric_single_car_rand/'\"",
39+
"--gin_configs",
40+
"configs/test_local_gt.gin",
41+
"--debug"
42+
]
43+
},
44+
{
45+
"name": "train_original_large",
46+
"type": "python",
47+
"request": "launch",
48+
"program": "train.py",
49+
"console": "integratedTerminal",
50+
"args": [
51+
"--base_folder",
52+
"log/debug/original",
53+
"--gin_bindings=\"data_dir='./data/pick_drop/'\"",
54+
"--gin_configs",
55+
"configs/test_local_large.gin",
56+
"--debug"
57+
]
58+
},
59+
{
60+
"name": "train_decompose_lf",
61+
"type": "python",
62+
"request": "launch",
63+
"program": "train.py",
64+
"console": "integratedTerminal",
65+
"args": [
66+
"--base_folder",
67+
"debug/decompose",
68+
"--gin_bindings=\"data_dir='./data/my_hand_large_motion/'\"",
69+
"--gin_configs",
70+
"configs/decompose/train_lf.gin",
71+
"--debug"
72+
]
73+
},
74+
{
75+
"name": "train_kubric",
76+
"type": "python",
77+
"request": "launch",
78+
"program": "train.py",
79+
"console": "integratedTerminal",
80+
"args": [
81+
"--base_folder",
82+
"debug/decompose/kubric",
83+
"--gin_bindings=\"data_dir='./data/kubric_single_car/'\"",
84+
"--gin_configs",
85+
"configs/decompose/train_kubric.gin",
86+
"--debug"
87+
]
88+
},
89+
{
90+
"name": "train_decompose_add_blend",
91+
"type": "python",
92+
"request": "launch",
93+
"program": "train.py",
94+
"console": "integratedTerminal",
95+
"args": [
96+
"--base_folder",
97+
"log/debug/decompose",
98+
"--gin_bindings=\"data_dir='./data/my_hand_large_motion/'\"",
99+
"--gin_configs",
100+
"configs/decompose/train_add_blend.gin",
101+
"--debug"
102+
]
103+
},
104+
{
105+
"name": "train_tune_debug",
106+
"type": "python",
107+
"request": "launch",
108+
"program": "train.py",
109+
"console": "integratedTerminal",
110+
"args": [
111+
"--base_folder",
112+
"log/hypernerf/broom/debug_nan",
113+
"--gin_bindings=\"data_dir='./data/hypernerf/broom/'\"",
114+
"--gin_configs",
115+
"configs/decompose/tune/tune_debug.gin",
116+
"--debug"
117+
]
118+
},
119+
{
120+
"name": "train_decompose_cdw",
121+
"type": "python",
122+
"request": "launch",
123+
"program": "train.py",
124+
"console": "integratedTerminal",
125+
"args": [
126+
"--base_folder",
127+
"log/debug/decompose",
128+
"--gin_bindings=\"data_dir='./data/peopleInShade/'\"",
129+
"--gin_configs",
130+
"configs/decompose/train_cdw.gin",
131+
"--debug"
132+
]
133+
},
134+
{
135+
"name": "train_separate",
136+
"type": "python",
137+
"request": "launch",
138+
"program": "train.py",
139+
"console": "integratedTerminal",
140+
"justMyCode": true,
141+
"args": [
142+
"--base_folder",
143+
"log/debug/sep_decompose",
144+
"--gin_bindings=\"data_dir='./data/kubric_car_sfm/'\"",
145+
"--gin_configs",
146+
"configs/separate/train.gin",
147+
"--debug"
148+
]
149+
},
150+
{
151+
"name": "train_static",
152+
"type": "python",
153+
"request": "launch",
154+
"program": "train.py",
155+
"console": "integratedTerminal",
156+
"args": [
157+
"--base_folder",
158+
"log/debug/pure_static",
159+
"--gin_bindings=\"data_dir='./data/kubric_car_static/'\"",
160+
"--gin_configs",
161+
"configs/test_decompose.gin",
162+
"--debug"
163+
]
164+
},
165+
{
166+
"name": "eval_original",
167+
"type": "python",
168+
"request": "launch",
169+
"program": "eval.py",
170+
"console": "integratedTerminal",
171+
"args": [
172+
"--base_folder",
173+
"log/my_hand/original_no_time",
174+
"--gin_bindings=\"data_dir='./data/my_hand/'\"",
175+
"--gin_configs",
176+
"configs/eval_local.gin",
177+
"--debug"
178+
]
179+
},
180+
{
181+
"name": "eval_original_fix_view",
182+
"type": "python",
183+
"request": "launch",
184+
"program": "eval.py",
185+
"console": "integratedTerminal",
186+
"args": [
187+
"--base_folder",
188+
"log/kubric_car/original_gt_cam",
189+
"--gin_bindings=\"data_dir='./data/kubric_car/'\"",
190+
"--gin_configs",
191+
"configs/eval_local_fix_view.gin",
192+
"--debug"
193+
]
194+
},
195+
{
196+
"name": "eval_decompose_debug",
197+
"type": "python",
198+
"request": "launch",
199+
"program": "eval.py",
200+
"console": "integratedTerminal",
201+
"args": [
202+
"--base_folder",
203+
"log/kubric_single_car_rand_v2/test_stability_v1/",
204+
"--gin_bindings=\"data_dir='./data/kubric_single_car_rand_v2/'\"",
205+
"--gin_configs",
206+
"configs/decompose/train_debug.gin",
207+
"--debug"
208+
]
209+
},
210+
{
211+
"name": "eval_kubric",
212+
"type": "python",
213+
"request": "launch",
214+
"program": "eval.py",
215+
"console": "integratedTerminal",
216+
"args": [
217+
"--base_folder",
218+
"log/kubric_single_car/decompose_v2",
219+
"--gin_bindings=\"data_dir='./data/kubric_single_car/'\"",
220+
"--gin_configs",
221+
"configs/decompose/train_kubric.gin",
222+
"--debug"
223+
]
224+
},
225+
{
226+
"name": "eval_cdw",
227+
"type": "python",
228+
"request": "launch",
229+
"program": "eval.py",
230+
"console": "integratedTerminal",
231+
"args": [
232+
"--base_folder",
233+
"log/cdw/peopleInShade/decompose_v7",
234+
"--gin_bindings=\"data_dir='./data/cdw/peopleInShade/'\"",
235+
"--gin_configs",
236+
"configs/decompose/train_cdw.gin",
237+
"--debug"
238+
]
239+
},
240+
{
241+
"name": "eval_tune",
242+
"type": "python",
243+
"request": "launch",
244+
"program": "eval.py",
245+
"console": "integratedTerminal",
246+
"args": [
247+
"--base_folder",
248+
"log/kubric_multi_car_rand/tune/small_skewness_2_gt/003",
249+
"--gin_bindings=\"data_dir='./data/kubric_multi_car_rand/'\"",
250+
"--gin_configs",
251+
"configs/decompose/tune/small_skewness_2_gt/003.gin",
252+
"--debug"
253+
]
254+
},
255+
]
256+
}

CONTRIBUTING.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# How to Contribute
2+
3+
We'd love to accept your patches and contributions to this project. There are
4+
just a few small guidelines you need to follow.
5+
6+
## Contributor License Agreement
7+
8+
Contributions to this project must be accompanied by a Contributor License
9+
Agreement (CLA). You (or your employer) retain the copyright to your
10+
contribution; this simply gives us permission to use and redistribute your
11+
contributions as part of the project. Head over to
12+
<https://cla.developers.google.com/> to see your current agreements on file or
13+
to sign a new one.
14+
15+
You generally only need to submit a CLA once, so if you've already submitted one
16+
(even if it was for a different project), you probably don't need to do it
17+
again.
18+
19+
## Code reviews
20+
21+
All submissions, including submissions by project members, require review. We
22+
use GitHub pull requests for this purpose. Consult
23+
[GitHub Help](https://help.github.com/articles/about-pull-requests/) for more
24+
information on using pull requests.
25+
26+
## Community Guidelines
27+
28+
This project follows
29+
[Google's Open Source Community Guidelines](https://opensource.google/conduct/).
30+

0 commit comments

Comments
 (0)