hassiahk commited on
Commit
60e41ba
1 Parent(s): 40c15ce

Added model checkpoints

Browse files
Files changed (34) hide show
  1. .gitattributes +5 -0
  2. .gitignore +132 -0
  3. .idea/.gitignore +0 -8
  4. .idea/inspectionProfiles/Project_Default.xml +0 -18
  5. .idea/inspectionProfiles/profiles_settings.xml +0 -6
  6. .idea/misc.xml +0 -4
  7. .idea/modules.xml +0 -8
  8. .idea/putting-nerf-on-a-diet.iml +0 -8
  9. .idea/vcs.xml +0 -6
  10. fork-of-first-touch-of-nerf-in-jax.ipynb +0 -0
  11. models/14_shot_occluded/fine_plus_coarse/lego_14_shot_occluded_diet_nerf +3 -0
  12. models/14_shot_occluded/fine_plus_coarse/lego_14_shot_occluded_nerf +3 -0
  13. models/14_shot_occluded/fine_plus_coarse/ship_14_shot_occluded_diet_nerf +3 -0
  14. models/14_shot_occluded/fine_plus_coarse/ship_14_shot_occluded_nerf +3 -0
  15. models/4_shot/fine_plus_coarse/hotdog_4_shot_diet_nerf +3 -0
  16. models/4_shot/fine_plus_coarse/hotdog_4_shot_nerf +3 -0
  17. models/4_shot/fine_plus_coarse/materials_4_shot_diet_nerf +3 -0
  18. models/4_shot/fine_plus_coarse/materials_4_shot_nerf +3 -0
  19. models/4_shot/fine_plus_coarse/mic_4_shot_diet_nerf +3 -0
  20. models/4_shot/fine_plus_coarse/mic_4_shot_nerf +3 -0
  21. models/8_shot/coarse/chair_8_shot_coarse_diet_nerf +3 -0
  22. models/8_shot/coarse/drums_8_shot_coarse_diet_nerf +3 -0
  23. models/8_shot/coarse/hotdog_8_shot_coarse_diet_nerf +3 -0
  24. models/8_shot/coarse/lego_8_shot_coarse_diet_nerf +3 -0
  25. models/8_shot/coarse/materials_8_shot_coarse_diet_nerf +3 -0
  26. models/8_shot/coarse/mic_8_shot_coarse_diet_nerf +3 -0
  27. models/8_shot/coarse/ship_8_shot_coarse_diet_nerf +3 -0
  28. models/8_shot/fine_plus_coarse/chair_8_shot_diet_nerf +3 -0
  29. models/8_shot/fine_plus_coarse/drums_8_shot_diet_nerf +3 -0
  30. models/8_shot/fine_plus_coarse/hotdog_8_shot_diet_nerf +3 -0
  31. models/8_shot/fine_plus_coarse/lego_8_shot_diet_nerf +3 -0
  32. models/8_shot/fine_plus_coarse/materials_8_shot_diet_nerf +3 -0
  33. models/8_shot/fine_plus_coarse/mic_8_shot_diet_nerf +3 -0
  34. models/8_shot/fine_plus_coarse/ship_8_shot_diet_nerf +3 -0
.gitattributes ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ *.pb filter=lfs diff=lfs merge=lfs -text
2
+ *.pt filter=lfs diff=lfs merge=lfs -text
3
+ *.pth filter=lfs diff=lfs merge=lfs -text
4
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
5
+ models/** filter=lfs diff=lfs merge=lfs -text
.gitignore ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-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
+ .nox/
44
+ .coverage
45
+ .coverage.*
46
+ .cache
47
+ nosetests.xml
48
+ coverage.xml
49
+ *.cover
50
+ *.py,cover
51
+ .hypothesis/
52
+ .pytest_cache/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ target/
76
+
77
+ # Jupyter Notebook
78
+ .ipynb_checkpoints
79
+
80
+ # IPython
81
+ profile_default/
82
+ ipython_config.py
83
+
84
+ # pyenv
85
+ .python-version
86
+
87
+ # pipenv
88
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
89
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
90
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
91
+ # install all needed dependencies.
92
+ #Pipfile.lock
93
+
94
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
95
+ __pypackages__/
96
+
97
+ # Celery stuff
98
+ celerybeat-schedule
99
+ celerybeat.pid
100
+
101
+ # SageMath parsed files
102
+ *.sage.py
103
+
104
+ # Environments
105
+ .env
106
+ .venv
107
+ env/
108
+ venv/
109
+ ENV/
110
+ env.bak/
111
+ venv.bak/
112
+
113
+ # Spyder project settings
114
+ .spyderproject
115
+ .spyproject
116
+
117
+ # Rope project settings
118
+ .ropeproject
119
+
120
+ # mkdocs documentation
121
+ /site
122
+
123
+ # mypy
124
+ .mypy_cache/
125
+ .dmypy.json
126
+ dmypy.json
127
+
128
+ # Pyre type checker
129
+ .pyre/
130
+
131
+ # VS Code settings
132
+ .vscode
.idea/.gitignore DELETED
@@ -1,8 +0,0 @@
1
- # Default ignored files
2
- /shelf/
3
- /workspace.xml
4
- # Datasource local storage ignored files
5
- /dataSources/
6
- /dataSources.local.xml
7
- # Editor-based HTTP Client requests
8
- /httpRequests/
 
 
 
 
 
 
 
 
 
.idea/inspectionProfiles/Project_Default.xml DELETED
@@ -1,18 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
- <inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
6
- <option name="ignoredPackages">
7
- <value>
8
- <list size="4">
9
- <item index="0" class="java.lang.String" itemvalue="tensorboard" />
10
- <item index="1" class="java.lang.String" itemvalue="shapely" />
11
- <item index="2" class="java.lang.String" itemvalue="geopandas" />
12
- <item index="3" class="java.lang.String" itemvalue="sklearn" />
13
- </list>
14
- </value>
15
- </option>
16
- </inspection_tool>
17
- </profile>
18
- </component>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.idea/inspectionProfiles/profiles_settings.xml DELETED
@@ -1,6 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <settings>
3
- <option name="USE_PROJECT_PROFILE" value="false" />
4
- <version value="1.0" />
5
- </settings>
6
- </component>
 
 
 
 
 
 
 
.idea/misc.xml DELETED
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectRootManager" version="2" project-jdk-name="Remote Python 3.8.8 (sftp://stella@147.46.112.43:8022/home/stella/anaconda3/envs/python3.8-pytorch17.1/bin/python)" project-jdk-type="Python SDK" />
4
- </project>
 
 
 
 
 
.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/putting-nerf-on-a-diet.iml" filepath="$PROJECT_DIR$/.idea/putting-nerf-on-a-diet.iml" />
6
- </modules>
7
- </component>
8
- </project>
 
 
 
 
 
 
 
 
 
.idea/putting-nerf-on-a-diet.iml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="PYTHON_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$" />
5
- <orderEntry type="inheritedJdk" />
6
- <orderEntry type="sourceFolder" forTests="false" />
7
- </component>
8
- </module>
 
 
 
 
 
 
 
 
 
.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
 
 
 
 
 
 
 
fork-of-first-touch-of-nerf-in-jax.ipynb DELETED
The diff for this file is too large to render. See raw diff
 
models/14_shot_occluded/fine_plus_coarse/lego_14_shot_occluded_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:604e590e4b4233a7494e344cf25723cd9195837615f909fc6caaa9efd6fbd4ff
3
+ size 14305645
models/14_shot_occluded/fine_plus_coarse/lego_14_shot_occluded_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3786cf8dd77aa5aba5afe3632e801c37083be11e031901c31a4a90713eb0c2b6
3
+ size 14305645
models/14_shot_occluded/fine_plus_coarse/ship_14_shot_occluded_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36809817fe7dda0323127b3e1852d21a86885aac281c0b2e3115696eff07afe3
3
+ size 14305645
models/14_shot_occluded/fine_plus_coarse/ship_14_shot_occluded_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5fd4a0baad6c81946578f479ba821bdfd0a3968ececa1bf72462478fb039e42a
3
+ size 14305645
models/4_shot/fine_plus_coarse/hotdog_4_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a19b47f668920b012148f976a33d798b4f62fd9ec60bb3b81a65f300489fa4b
3
+ size 14305645
models/4_shot/fine_plus_coarse/hotdog_4_shot_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f149bbfddb76db3d28a6629490dae4761b921e42152ba89e1add7c5267a25504
3
+ size 14305645
models/4_shot/fine_plus_coarse/materials_4_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef250be5cd68b1ca96ea36d2e1e96f6eb17d01ed988cb25ebff45be33c5aad6c
3
+ size 14305645
models/4_shot/fine_plus_coarse/materials_4_shot_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3af5846194f143fd8a2a2100c5dcd6d5a55e488b66542aa9d9fe741f121df0e4
3
+ size 14305645
models/4_shot/fine_plus_coarse/mic_4_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a343b1630046fc9063997577941e755841da2f2df52ab4962020e5e140577632
3
+ size 14305645
models/4_shot/fine_plus_coarse/mic_4_shot_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ec606fde58cef9a22d4d7b695ca777990ff0daf53fdbc64d32fd64b657f8528
3
+ size 14305645
models/8_shot/coarse/chair_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8a58308112c8a39cbe394bb147b22039043133284324470192cff28e9e77ee24
3
+ size 14305645
models/8_shot/coarse/drums_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32004a6b543c3159497b6166dfd39c86f0a1055eb74f397ce7bbb6ab1142eead
3
+ size 14305645
models/8_shot/coarse/hotdog_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0f9216085509c996d6551de32929af4580b68ffb54d27dfa3212c4f28e405bd
3
+ size 14305645
models/8_shot/coarse/lego_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:252f85cde306ff6994659b4ae9428867d68d4c0d424a6cf5e2599001fba94934
3
+ size 14305645
models/8_shot/coarse/materials_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0eca4684c1ac755f4e08950645e0b3815042085e1cc7ae6644460a2fbb745bf3
3
+ size 14305645
models/8_shot/coarse/mic_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f0e8b34abdc7fd642cb9d3ceb27c6653d67b3f6f1bed436c014b286c023e7ef
3
+ size 14305645
models/8_shot/coarse/ship_8_shot_coarse_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fedd2d5534bf2a9cbfc58ba66b4f91675c6122f005c5fe9c4ea9502f051168de
3
+ size 14305645
models/8_shot/fine_plus_coarse/chair_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:503a2cacf7cdebecb45556e97b786addcf2270cc45700331b00b63ef236a1c98
3
+ size 14305645
models/8_shot/fine_plus_coarse/drums_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:243316a2086a6b3f8dfb5d6ee7a9f4ff0d3fd00d7b049a8b34a409e6c125bcde
3
+ size 14305645
models/8_shot/fine_plus_coarse/hotdog_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2a68d92db33c39a65e416fc01925c0ecd2caa613cbc9c74263be7b88f4219b3c
3
+ size 14305645
models/8_shot/fine_plus_coarse/lego_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2220eb2ef51ab7a4734eabd43b58420f9f6e2eb762390c92b94f703a640a7525
3
+ size 14305645
models/8_shot/fine_plus_coarse/materials_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dca981b7884038cf7498fd21018e5f4a4721252b3a9af64761498c8db008c389
3
+ size 14305645
models/8_shot/fine_plus_coarse/mic_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d6dae142642e07c12be9d0ab5bfd11a2c0f968b128a64b8e0a076aa3b2dc2b4
3
+ size 14305645
models/8_shot/fine_plus_coarse/ship_8_shot_diet_nerf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be28cdc08dd86ee57cae18b7f1d9098233d1fc3c6b1561c257d4737808acbedc
3
+ size 14305645