Spaces:
Runtime error
Runtime error
Jiading Fang
commited on
Commit
·
fc16538
1
Parent(s):
a916a0c
add define
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +2 -0
- .gitignore +8 -0
- .gitmodules +3 -0
- LICENSE.md +409 -0
- Makefile +56 -0
- configs/overfit/ddad_tiny.yaml +31 -0
- configs/overfit/generic.yaml +27 -0
- configs/overfit/kitti_tiny.yaml +31 -0
- configs/papers/define/scannet_temporal_test.yaml +79 -0
- configs/papers/define/scannet_temporal_test_context_1.yaml +79 -0
- configs/papers/depthformer/inference_kitti.yaml +31 -0
- configs/papers/fsm/inference_ddad.yaml +19 -0
- configs/papers/packnet/inference_packnet.yaml +20 -0
- configs/papers/packnet/inference_resnet.yaml +20 -0
- configs/papers/selfcalib/ds_euroc.yaml +40 -0
- configs/papers/selfcalib/eucm_euroc.yaml +40 -0
- configs/papers/selfcalib/ucm_euroc.yaml +40 -0
- configs/papers/selfcalib/ucm_kitti.yaml +44 -0
- configs/recipes/checkpoint.yaml +8 -0
- configs/recipes/datasets/ddad.yaml +32 -0
- configs/recipes/datasets/ddad_tiny.yaml +32 -0
- configs/recipes/datasets/euroc.yaml +30 -0
- configs/recipes/datasets/generic.yaml +30 -0
- configs/recipes/datasets/kitti.yaml +31 -0
- configs/recipes/datasets/kitti_tiny.yaml +32 -0
- configs/recipes/datasets/vkitti2.yaml +16 -0
- configs/recipes/evaluation/depth.yaml +21 -0
- configs/recipes/losses/reprojection.yaml +9 -0
- configs/recipes/losses/smoothness.yaml +5 -0
- configs/recipes/losses/supervised_depth.yaml +40 -0
- configs/recipes/networks/conv_pose_net.yaml +5 -0
- configs/recipes/networks/focal_depth_res_net.yaml +12 -0
- configs/recipes/networks/mono_depth_res_net.yaml +10 -0
- configs/recipes/networks/multi_depth_res_net.yaml +17 -0
- configs/recipes/networks/packnet.yaml +10 -0
- configs/recipes/networks/pose_net.yaml +5 -0
- configs/recipes/networks/transformer.yaml +12 -0
- configs/recipes/optimizers.yaml +7 -0
- configs/recipes/save.yaml +5 -0
- configs/recipes/wandb.yaml +5 -0
- configs/recipes/wrapper.yaml +10 -0
- data/generic/scene1/15616458296936490.jpg +0 -0
- data/generic/scene1/15616458297936490.jpg +0 -0
- data/generic/scene1/15616458298936492.jpg +0 -0
- data/generic/scene1/15616458299936482.jpg +0 -0
- data/generic/scene1/15616458300936480.jpg +0 -0
- data/masks/ddad/01.png +3 -0
- data/masks/ddad/05.png +3 -0
- data/masks/ddad/06.png +3 -0
- data/masks/ddad/07.png +3 -0
.gitattributes
CHANGED
|
@@ -32,3 +32,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 32 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 33 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
**/*.gif filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
**/*.png filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.pyc
|
| 2 |
+
.idea
|
| 3 |
+
*ZZZ*
|
| 4 |
+
sandbox
|
| 5 |
+
__pycache__
|
| 6 |
+
wandb
|
| 7 |
+
temp
|
| 8 |
+
code
|
.gitmodules
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[submodule "externals/camviz"]
|
| 2 |
+
path = externals/camviz
|
| 3 |
+
url = [email protected]:TRI-ML/camviz.git
|
LICENSE.md
ADDED
|
@@ -0,0 +1,409 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Attribution-NonCommercial 4.0 International
|
| 2 |
+
|
| 3 |
+
=======================================================================
|
| 4 |
+
|
| 5 |
+
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
| 6 |
+
does not provide legal services or legal advice. Distribution of
|
| 7 |
+
Creative Commons public licenses does not create a lawyer-client or
|
| 8 |
+
other relationship. Creative Commons makes its licenses and related
|
| 9 |
+
information available on an "as-is" basis. Creative Commons gives no
|
| 10 |
+
warranties regarding its licenses, any material licensed under their
|
| 11 |
+
terms and conditions, or any related information. Creative Commons
|
| 12 |
+
disclaims all liability for damages resulting from their use to the
|
| 13 |
+
fullest extent possible.
|
| 14 |
+
|
| 15 |
+
Using Creative Commons Public Licenses
|
| 16 |
+
|
| 17 |
+
Creative Commons public licenses provide a standard set of terms and
|
| 18 |
+
conditions that creators and other rights holders may use to share
|
| 19 |
+
original works of authorship and other material subject to copyright
|
| 20 |
+
and certain other rights specified in the public license below. The
|
| 21 |
+
following considerations are for informational purposes only, are not
|
| 22 |
+
exhaustive, and do not form part of our licenses.
|
| 23 |
+
|
| 24 |
+
Considerations for licensors: Our public licenses are
|
| 25 |
+
intended for use by those authorized to give the public
|
| 26 |
+
permission to use material in ways otherwise restricted by
|
| 27 |
+
copyright and certain other rights. Our licenses are
|
| 28 |
+
irrevocable. Licensors should read and understand the terms
|
| 29 |
+
and conditions of the license they choose before applying it.
|
| 30 |
+
Licensors should also secure all rights necessary before
|
| 31 |
+
applying our licenses so that the public can reuse the
|
| 32 |
+
material as expected. Licensors should clearly mark any
|
| 33 |
+
material not subject to the license. This includes other CC-
|
| 34 |
+
licensed material, or material used under an exception or
|
| 35 |
+
limitation to copyright. More considerations for licensors:
|
| 36 |
+
wiki.creativecommons.org/Considerations_for_licensors
|
| 37 |
+
|
| 38 |
+
Considerations for the public: By using one of our public
|
| 39 |
+
licenses, a licensor grants the public permission to use the
|
| 40 |
+
licensed material under specified terms and conditions. If
|
| 41 |
+
the licensor's permission is not necessary for any reason--for
|
| 42 |
+
example, because of any applicable exception or limitation to
|
| 43 |
+
copyright--then that use is not regulated by the license. Our
|
| 44 |
+
licenses grant only permissions under copyright and certain
|
| 45 |
+
other rights that a licensor has authority to grant. Use of
|
| 46 |
+
the licensed material may still be restricted for other
|
| 47 |
+
reasons, including because others have copyright or other
|
| 48 |
+
rights in the material. A licensor may make special requests,
|
| 49 |
+
such as asking that all changes be marked or described.
|
| 50 |
+
Although not required by our licenses, you are encouraged to
|
| 51 |
+
respect those requests where reasonable. More considerations
|
| 52 |
+
for the public:
|
| 53 |
+
wiki.creativecommons.org/Considerations_for_licensees
|
| 54 |
+
|
| 55 |
+
=======================================================================
|
| 56 |
+
|
| 57 |
+
Creative Commons Attribution-NonCommercial 4.0 International Public
|
| 58 |
+
License
|
| 59 |
+
|
| 60 |
+
By exercising the Licensed Rights (defined below), You accept and agree
|
| 61 |
+
to be bound by the terms and conditions of this Creative Commons
|
| 62 |
+
Attribution-NonCommercial 4.0 International Public License ("Public
|
| 63 |
+
License"). To the extent this Public License may be interpreted as a
|
| 64 |
+
contract, You are granted the Licensed Rights in consideration of Your
|
| 65 |
+
acceptance of these terms and conditions, and the Licensor grants You
|
| 66 |
+
such rights in consideration of benefits the Licensor receives from
|
| 67 |
+
making the Licensed Material available under these terms and
|
| 68 |
+
conditions.
|
| 69 |
+
|
| 70 |
+
|
| 71 |
+
Section 1 -- Definitions.
|
| 72 |
+
|
| 73 |
+
a. Adapted Material means material subject to Copyright and Similar
|
| 74 |
+
Rights that is derived from or based upon the Licensed Material
|
| 75 |
+
and in which the Licensed Material is translated, altered,
|
| 76 |
+
arranged, transformed, or otherwise modified in a manner requiring
|
| 77 |
+
permission under the Copyright and Similar Rights held by the
|
| 78 |
+
Licensor. For purposes of this Public License, where the Licensed
|
| 79 |
+
Material is a musical work, performance, or sound recording,
|
| 80 |
+
Adapted Material is always produced where the Licensed Material is
|
| 81 |
+
synched in timed relation with a moving image.
|
| 82 |
+
|
| 83 |
+
b. Adapter's License means the license You apply to Your Copyright
|
| 84 |
+
and Similar Rights in Your contributions to Adapted Material in
|
| 85 |
+
accordance with the terms and conditions of this Public License.
|
| 86 |
+
|
| 87 |
+
c. Copyright and Similar Rights means copyright and/or similar rights
|
| 88 |
+
closely related to copyright including, without limitation,
|
| 89 |
+
performance, broadcast, sound recording, and Sui Generis Database
|
| 90 |
+
Rights, without regard to how the rights are labeled or
|
| 91 |
+
categorized. For purposes of this Public License, the rights
|
| 92 |
+
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
| 93 |
+
Rights.
|
| 94 |
+
d. Effective Technological Measures means those measures that, in the
|
| 95 |
+
absence of proper authority, may not be circumvented under laws
|
| 96 |
+
fulfilling obligations under Article 11 of the WIPO Copyright
|
| 97 |
+
Treaty adopted on December 20, 1996, and/or similar international
|
| 98 |
+
agreements.
|
| 99 |
+
|
| 100 |
+
e. Exceptions and Limitations means fair use, fair dealing, and/or
|
| 101 |
+
any other exception or limitation to Copyright and Similar Rights
|
| 102 |
+
that applies to Your use of the Licensed Material.
|
| 103 |
+
|
| 104 |
+
f. Licensed Material means the artistic or literary work, database,
|
| 105 |
+
or other material to which the Licensor applied this Public
|
| 106 |
+
License.
|
| 107 |
+
|
| 108 |
+
g. Licensed Rights means the rights granted to You subject to the
|
| 109 |
+
terms and conditions of this Public License, which are limited to
|
| 110 |
+
all Copyright and Similar Rights that apply to Your use of the
|
| 111 |
+
Licensed Material and that the Licensor has authority to license.
|
| 112 |
+
|
| 113 |
+
h. Licensor means the individual(s) or entity(ies) granting rights
|
| 114 |
+
under this Public License.
|
| 115 |
+
|
| 116 |
+
i. NonCommercial means not primarily intended for or directed towards
|
| 117 |
+
commercial advantage or monetary compensation. For purposes of
|
| 118 |
+
this Public License, the exchange of the Licensed Material for
|
| 119 |
+
other material subject to Copyright and Similar Rights by digital
|
| 120 |
+
file-sharing or similar means is NonCommercial provided there is
|
| 121 |
+
no payment of monetary compensation in connection with the
|
| 122 |
+
exchange.
|
| 123 |
+
|
| 124 |
+
j. Share means to provide material to the public by any means or
|
| 125 |
+
process that requires permission under the Licensed Rights, such
|
| 126 |
+
as reproduction, public display, public performance, distribution,
|
| 127 |
+
dissemination, communication, or importation, and to make material
|
| 128 |
+
available to the public including in ways that members of the
|
| 129 |
+
public may access the material from a place and at a time
|
| 130 |
+
individually chosen by them.
|
| 131 |
+
|
| 132 |
+
k. Sui Generis Database Rights means rights other than copyright
|
| 133 |
+
resulting from Directive 96/9/EC of the European Parliament and of
|
| 134 |
+
the Council of 11 March 1996 on the legal protection of databases,
|
| 135 |
+
as amended and/or succeeded, as well as other essentially
|
| 136 |
+
equivalent rights anywhere in the world.
|
| 137 |
+
|
| 138 |
+
l. You means the individual or entity exercising the Licensed Rights
|
| 139 |
+
under this Public License. Your has a corresponding meaning.
|
| 140 |
+
|
| 141 |
+
|
| 142 |
+
Section 2 -- Scope.
|
| 143 |
+
|
| 144 |
+
a. License grant.
|
| 145 |
+
|
| 146 |
+
1. Subject to the terms and conditions of this Public License,
|
| 147 |
+
the Licensor hereby grants You a worldwide, royalty-free,
|
| 148 |
+
non-sublicensable, non-exclusive, irrevocable license to
|
| 149 |
+
exercise the Licensed Rights in the Licensed Material to:
|
| 150 |
+
|
| 151 |
+
a. reproduce and Share the Licensed Material, in whole or
|
| 152 |
+
in part, for NonCommercial purposes only; and
|
| 153 |
+
|
| 154 |
+
b. produce, reproduce, and Share Adapted Material for
|
| 155 |
+
NonCommercial purposes only.
|
| 156 |
+
|
| 157 |
+
2. Exceptions and Limitations. For the avoidance of doubt, where
|
| 158 |
+
Exceptions and Limitations apply to Your use, this Public
|
| 159 |
+
License does not apply, and You do not need to comply with
|
| 160 |
+
its terms and conditions.
|
| 161 |
+
|
| 162 |
+
3. Term. The term of this Public License is specified in Section
|
| 163 |
+
6(a).
|
| 164 |
+
|
| 165 |
+
4. Media and formats; technical modifications allowed. The
|
| 166 |
+
Licensor authorizes You to exercise the Licensed Rights in
|
| 167 |
+
all media and formats whether now known or hereafter created,
|
| 168 |
+
and to make technical modifications necessary to do so. The
|
| 169 |
+
Licensor waives and/or agrees not to assert any right or
|
| 170 |
+
authority to forbid You from making technical modifications
|
| 171 |
+
necessary to exercise the Licensed Rights, including
|
| 172 |
+
technical modifications necessary to circumvent Effective
|
| 173 |
+
Technological Measures. For purposes of this Public License,
|
| 174 |
+
simply making modifications authorized by this Section 2(a)
|
| 175 |
+
(4) never produces Adapted Material.
|
| 176 |
+
|
| 177 |
+
5. Downstream recipients.
|
| 178 |
+
|
| 179 |
+
a. Offer from the Licensor -- Licensed Material. Every
|
| 180 |
+
recipient of the Licensed Material automatically
|
| 181 |
+
receives an offer from the Licensor to exercise the
|
| 182 |
+
Licensed Rights under the terms and conditions of this
|
| 183 |
+
Public License.
|
| 184 |
+
|
| 185 |
+
b. No downstream restrictions. You may not offer or impose
|
| 186 |
+
any additional or different terms or conditions on, or
|
| 187 |
+
apply any Effective Technological Measures to, the
|
| 188 |
+
Licensed Material if doing so restricts exercise of the
|
| 189 |
+
Licensed Rights by any recipient of the Licensed
|
| 190 |
+
Material.
|
| 191 |
+
|
| 192 |
+
6. No endorsement. Nothing in this Public License constitutes or
|
| 193 |
+
may be construed as permission to assert or imply that You
|
| 194 |
+
are, or that Your use of the Licensed Material is, connected
|
| 195 |
+
with, or sponsored, endorsed, or granted official status by,
|
| 196 |
+
the Licensor or others designated to receive attribution as
|
| 197 |
+
provided in Section 3(a)(1)(A)(i).
|
| 198 |
+
|
| 199 |
+
b. Other rights.
|
| 200 |
+
|
| 201 |
+
1. Moral rights, such as the right of integrity, are not
|
| 202 |
+
licensed under this Public License, nor are publicity,
|
| 203 |
+
privacy, and/or other similar personality rights; however, to
|
| 204 |
+
the extent possible, the Licensor waives and/or agrees not to
|
| 205 |
+
assert any such rights held by the Licensor to the limited
|
| 206 |
+
extent necessary to allow You to exercise the Licensed
|
| 207 |
+
Rights, but not otherwise.
|
| 208 |
+
|
| 209 |
+
2. Patent and trademark rights are not licensed under this
|
| 210 |
+
Public License.
|
| 211 |
+
|
| 212 |
+
3. To the extent possible, the Licensor waives any right to
|
| 213 |
+
collect royalties from You for the exercise of the Licensed
|
| 214 |
+
Rights, whether directly or through a collecting society
|
| 215 |
+
under any voluntary or waivable statutory or compulsory
|
| 216 |
+
licensing scheme. In all other cases the Licensor expressly
|
| 217 |
+
reserves any right to collect such royalties, including when
|
| 218 |
+
the Licensed Material is used other than for NonCommercial
|
| 219 |
+
purposes.
|
| 220 |
+
|
| 221 |
+
|
| 222 |
+
Section 3 -- License Conditions.
|
| 223 |
+
|
| 224 |
+
Your exercise of the Licensed Rights is expressly made subject to the
|
| 225 |
+
following conditions.
|
| 226 |
+
|
| 227 |
+
a. Attribution.
|
| 228 |
+
|
| 229 |
+
1. If You Share the Licensed Material (including in modified
|
| 230 |
+
form), You must:
|
| 231 |
+
|
| 232 |
+
a. retain the following if it is supplied by the Licensor
|
| 233 |
+
with the Licensed Material:
|
| 234 |
+
|
| 235 |
+
i. identification of the creator(s) of the Licensed
|
| 236 |
+
Material and any others designated to receive
|
| 237 |
+
attribution, in any reasonable manner requested by
|
| 238 |
+
the Licensor (including by pseudonym if
|
| 239 |
+
designated);
|
| 240 |
+
|
| 241 |
+
ii. a copyright notice;
|
| 242 |
+
|
| 243 |
+
iii. a notice that refers to this Public License;
|
| 244 |
+
|
| 245 |
+
iv. a notice that refers to the disclaimer of
|
| 246 |
+
warranties;
|
| 247 |
+
|
| 248 |
+
v. a URI or hyperlink to the Licensed Material to the
|
| 249 |
+
extent reasonably practicable;
|
| 250 |
+
|
| 251 |
+
b. indicate if You modified the Licensed Material and
|
| 252 |
+
retain an indication of any previous modifications; and
|
| 253 |
+
|
| 254 |
+
c. indicate the Licensed Material is licensed under this
|
| 255 |
+
Public License, and include the text of, or the URI or
|
| 256 |
+
hyperlink to, this Public License.
|
| 257 |
+
|
| 258 |
+
2. You may satisfy the conditions in Section 3(a)(1) in any
|
| 259 |
+
reasonable manner based on the medium, means, and context in
|
| 260 |
+
which You Share the Licensed Material. For example, it may be
|
| 261 |
+
reasonable to satisfy the conditions by providing a URI or
|
| 262 |
+
hyperlink to a resource that includes the required
|
| 263 |
+
information.
|
| 264 |
+
|
| 265 |
+
3. If requested by the Licensor, You must remove any of the
|
| 266 |
+
information required by Section 3(a)(1)(A) to the extent
|
| 267 |
+
reasonably practicable.
|
| 268 |
+
|
| 269 |
+
4. If You Share Adapted Material You produce, the Adapter's
|
| 270 |
+
License You apply must not prevent recipients of the Adapted
|
| 271 |
+
Material from complying with this Public License.
|
| 272 |
+
|
| 273 |
+
|
| 274 |
+
Section 4 -- Sui Generis Database Rights.
|
| 275 |
+
|
| 276 |
+
Where the Licensed Rights include Sui Generis Database Rights that
|
| 277 |
+
apply to Your use of the Licensed Material:
|
| 278 |
+
|
| 279 |
+
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
| 280 |
+
to extract, reuse, reproduce, and Share all or a substantial
|
| 281 |
+
portion of the contents of the database for NonCommercial purposes
|
| 282 |
+
only;
|
| 283 |
+
|
| 284 |
+
b. if You include all or a substantial portion of the database
|
| 285 |
+
contents in a database in which You have Sui Generis Database
|
| 286 |
+
Rights, then the database in which You have Sui Generis Database
|
| 287 |
+
Rights (but not its individual contents) is Adapted Material; and
|
| 288 |
+
|
| 289 |
+
c. You must comply with the conditions in Section 3(a) if You Share
|
| 290 |
+
all or a substantial portion of the contents of the database.
|
| 291 |
+
|
| 292 |
+
For the avoidance of doubt, this Section 4 supplements and does not
|
| 293 |
+
replace Your obligations under this Public License where the Licensed
|
| 294 |
+
Rights include other Copyright and Similar Rights.
|
| 295 |
+
|
| 296 |
+
|
| 297 |
+
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
| 298 |
+
|
| 299 |
+
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
| 300 |
+
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
| 301 |
+
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
| 302 |
+
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
| 303 |
+
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
| 304 |
+
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
| 305 |
+
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
| 306 |
+
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
| 307 |
+
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
| 308 |
+
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
| 309 |
+
|
| 310 |
+
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
| 311 |
+
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
| 312 |
+
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
| 313 |
+
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
| 314 |
+
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
| 315 |
+
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
| 316 |
+
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
| 317 |
+
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
| 318 |
+
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
| 319 |
+
|
| 320 |
+
c. The disclaimer of warranties and limitation of liability provided
|
| 321 |
+
above shall be interpreted in a manner that, to the extent
|
| 322 |
+
possible, most closely approximates an absolute disclaimer and
|
| 323 |
+
waiver of all liability.
|
| 324 |
+
|
| 325 |
+
|
| 326 |
+
Section 6 -- Term and Termination.
|
| 327 |
+
|
| 328 |
+
a. This Public License applies for the term of the Copyright and
|
| 329 |
+
Similar Rights licensed here. However, if You fail to comply with
|
| 330 |
+
this Public License, then Your rights under this Public License
|
| 331 |
+
terminate automatically.
|
| 332 |
+
|
| 333 |
+
b. Where Your right to use the Licensed Material has terminated under
|
| 334 |
+
Section 6(a), it reinstates:
|
| 335 |
+
|
| 336 |
+
1. automatically as of the date the violation is cured, provided
|
| 337 |
+
it is cured within 30 days of Your discovery of the
|
| 338 |
+
violation; or
|
| 339 |
+
|
| 340 |
+
2. upon express reinstatement by the Licensor.
|
| 341 |
+
|
| 342 |
+
For the avoidance of doubt, this Section 6(b) does not affect any
|
| 343 |
+
right the Licensor may have to seek remedies for Your violations
|
| 344 |
+
of this Public License.
|
| 345 |
+
|
| 346 |
+
c. For the avoidance of doubt, the Licensor may also offer the
|
| 347 |
+
Licensed Material under separate terms or conditions or stop
|
| 348 |
+
distributing the Licensed Material at any time; however, doing so
|
| 349 |
+
will not terminate this Public License.
|
| 350 |
+
|
| 351 |
+
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
| 352 |
+
License.
|
| 353 |
+
|
| 354 |
+
|
| 355 |
+
Section 7 -- Other Terms and Conditions.
|
| 356 |
+
|
| 357 |
+
a. The Licensor shall not be bound by any additional or different
|
| 358 |
+
terms or conditions communicated by You unless expressly agreed.
|
| 359 |
+
|
| 360 |
+
b. Any arrangements, understandings, or agreements regarding the
|
| 361 |
+
Licensed Material not stated herein are separate from and
|
| 362 |
+
independent of the terms and conditions of this Public License.
|
| 363 |
+
|
| 364 |
+
|
| 365 |
+
Section 8 -- Interpretation.
|
| 366 |
+
|
| 367 |
+
a. For the avoidance of doubt, this Public License does not, and
|
| 368 |
+
shall not be interpreted to, reduce, limit, restrict, or impose
|
| 369 |
+
conditions on any use of the Licensed Material that could lawfully
|
| 370 |
+
be made without permission under this Public License.
|
| 371 |
+
|
| 372 |
+
b. To the extent possible, if any provision of this Public License is
|
| 373 |
+
deemed unenforceable, it shall be automatically reformed to the
|
| 374 |
+
minimum extent necessary to make it enforceable. If the provision
|
| 375 |
+
cannot be reformed, it shall be severed from this Public License
|
| 376 |
+
without affecting the enforceability of the remaining terms and
|
| 377 |
+
conditions.
|
| 378 |
+
|
| 379 |
+
c. No term or condition of this Public License will be waived and no
|
| 380 |
+
failure to comply consented to unless expressly agreed to by the
|
| 381 |
+
Licensor.
|
| 382 |
+
|
| 383 |
+
d. Nothing in this Public License constitutes or may be interpreted
|
| 384 |
+
as a limitation upon, or waiver of, any privileges and immunities
|
| 385 |
+
that apply to the Licensor or You, including from the legal
|
| 386 |
+
processes of any jurisdiction or authority.
|
| 387 |
+
|
| 388 |
+
=======================================================================
|
| 389 |
+
|
| 390 |
+
Creative Commons is not a party to its public
|
| 391 |
+
licenses. Notwithstanding, Creative Commons may elect to apply one of
|
| 392 |
+
its public licenses to material it publishes and in those instances
|
| 393 |
+
will be considered the “Licensor.” The text of the Creative Commons
|
| 394 |
+
public licenses is dedicated to the public domain under the CC0 Public
|
| 395 |
+
Domain Dedication. Except for the limited purpose of indicating that
|
| 396 |
+
material is shared under a Creative Commons public license or as
|
| 397 |
+
otherwise permitted by the Creative Commons policies published at
|
| 398 |
+
creativecommons.org/policies, Creative Commons does not authorize the
|
| 399 |
+
use of the trademark "Creative Commons" or any other trademark or logo
|
| 400 |
+
of Creative Commons without its prior written consent including,
|
| 401 |
+
without limitation, in connection with any unauthorized modifications
|
| 402 |
+
to any of its public licenses or any other arrangements,
|
| 403 |
+
understandings, or agreements concerning use of licensed material. For
|
| 404 |
+
the avoidance of doubt, this paragraph does not form part of the
|
| 405 |
+
public licenses.
|
| 406 |
+
|
| 407 |
+
Creative Commons may be contacted at creativecommons.org.
|
| 408 |
+
|
| 409 |
+
|
Makefile
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
PROJECT ?= vidar
|
| 2 |
+
WORKSPACE ?= /workspace/$(PROJECT)
|
| 3 |
+
DOCKER_IMAGE ?= ${PROJECT}:latest
|
| 4 |
+
|
| 5 |
+
SHMSIZE ?= 444G
|
| 6 |
+
WANDB_MODE ?= run
|
| 7 |
+
DOCKER_OPTS := \
|
| 8 |
+
--name ${PROJECT} \
|
| 9 |
+
--rm -it \
|
| 10 |
+
--shm-size=${SHMSIZE} \
|
| 11 |
+
-e AWS_DEFAULT_REGION \
|
| 12 |
+
-e AWS_ACCESS_KEY_ID \
|
| 13 |
+
-e AWS_SECRET_ACCESS_KEY \
|
| 14 |
+
-e WANDB_API_KEY \
|
| 15 |
+
-e WANDB_ENTITY \
|
| 16 |
+
-e WANDB_MODE \
|
| 17 |
+
-e HOST_HOSTNAME= \
|
| 18 |
+
-e OMP_NUM_THREADS=1 -e KMP_AFFINITY="granularity=fine,compact,1,0" \
|
| 19 |
+
-e OMPI_ALLOW_RUN_AS_ROOT=1 \
|
| 20 |
+
-e OMPI_ALLOW_RUN_AS_ROOT_CONFIRM=1 \
|
| 21 |
+
-e NCCL_DEBUG=VERSION \
|
| 22 |
+
-e DISPLAY=${DISPLAY} \
|
| 23 |
+
-e XAUTHORITY \
|
| 24 |
+
-e NVIDIA_DRIVER_CAPABILITIES=all \
|
| 25 |
+
-v ~/.aws:/root/.aws \
|
| 26 |
+
-v /root/.ssh:/root/.ssh \
|
| 27 |
+
-v ~/.cache:/root/.cache \
|
| 28 |
+
-v /dev/null:/dev/raw1394 \
|
| 29 |
+
-v /mnt/fsx/tmp:/tmp \
|
| 30 |
+
-v /tmp/.X11-unix/X0:/tmp/.X11-unix/X0 \
|
| 31 |
+
-v /var/run/docker.sock:/var/run/docker.sock \
|
| 32 |
+
-v /home/jiadingfang/datasets:/data \
|
| 33 |
+
-v ${PWD}:${WORKSPACE} \
|
| 34 |
+
-w ${WORKSPACE} \
|
| 35 |
+
--privileged \
|
| 36 |
+
--ipc=host \
|
| 37 |
+
--network=host
|
| 38 |
+
|
| 39 |
+
NGPUS=$(shell nvidia-smi -L | wc -l)
|
| 40 |
+
|
| 41 |
+
all: clean
|
| 42 |
+
|
| 43 |
+
clean:
|
| 44 |
+
find . -name "*.pyc" | xargs rm -f && \
|
| 45 |
+
find . -name "__pycache__" | xargs rm -rf
|
| 46 |
+
|
| 47 |
+
docker-build:
|
| 48 |
+
docker build \
|
| 49 |
+
-f docker/Dockerfile \
|
| 50 |
+
-t ${DOCKER_IMAGE} .
|
| 51 |
+
|
| 52 |
+
docker-interactive: docker-build
|
| 53 |
+
nvidia-docker run ${DOCKER_OPTS} ${DOCKER_IMAGE} bash
|
| 54 |
+
|
| 55 |
+
docker-run: docker-build
|
| 56 |
+
nvidia-docker run ${DOCKER_OPTS} ${DOCKER_IMAGE} bash -c "${COMMAND}"
|
configs/overfit/ddad_tiny.yaml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
max_epochs: 1
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
networks:
|
| 8 |
+
depth:
|
| 9 |
+
recipe: networks/mono_depth_res_net|default
|
| 10 |
+
depth_range: [0.1,100.0]
|
| 11 |
+
pose:
|
| 12 |
+
recipe: networks/pose_net|default
|
| 13 |
+
losses:
|
| 14 |
+
reprojection:
|
| 15 |
+
recipe: losses/reprojection|default
|
| 16 |
+
smoothness:
|
| 17 |
+
recipe: losses/smoothness|default
|
| 18 |
+
evaluation:
|
| 19 |
+
depth:
|
| 20 |
+
recipe: evaluation/depth|ddad_resize
|
| 21 |
+
optimizers:
|
| 22 |
+
depth:
|
| 23 |
+
recipe: optimizers|adam_20_05
|
| 24 |
+
pose:
|
| 25 |
+
recipe: optimizers|adam_20_05
|
| 26 |
+
datasets:
|
| 27 |
+
train:
|
| 28 |
+
recipe: datasets/ddad_tiny|train_selfsup_front
|
| 29 |
+
validation:
|
| 30 |
+
recipe: datasets/ddad_tiny|validation_front
|
| 31 |
+
|
configs/overfit/generic.yaml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
max_epochs: 1
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
networks:
|
| 8 |
+
depth:
|
| 9 |
+
recipe: networks/mono_depth_res_net|default
|
| 10 |
+
depth_range: [0.1,100.0]
|
| 11 |
+
pose:
|
| 12 |
+
recipe: networks/pose_net|default
|
| 13 |
+
losses:
|
| 14 |
+
reprojection:
|
| 15 |
+
recipe: losses/reprojection|default
|
| 16 |
+
smoothness:
|
| 17 |
+
recipe: losses/smoothness|default
|
| 18 |
+
optimizers:
|
| 19 |
+
depth:
|
| 20 |
+
recipe: optimizers|adam_20_05
|
| 21 |
+
pose:
|
| 22 |
+
recipe: optimizers|adam_20_05
|
| 23 |
+
datasets:
|
| 24 |
+
train:
|
| 25 |
+
recipe: datasets/generic|default_train
|
| 26 |
+
validation:
|
| 27 |
+
recipe: datasets/generic|default_validation
|
configs/overfit/kitti_tiny.yaml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
max_epochs: 1
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
networks:
|
| 8 |
+
depth:
|
| 9 |
+
recipe: networks/mono_depth_res_net|default
|
| 10 |
+
depth_range: [0.1,100.0]
|
| 11 |
+
pose:
|
| 12 |
+
recipe: networks/pose_net|default
|
| 13 |
+
losses:
|
| 14 |
+
reprojection:
|
| 15 |
+
recipe: losses/reprojection|default
|
| 16 |
+
smoothness:
|
| 17 |
+
recipe: losses/smoothness|default
|
| 18 |
+
evaluation:
|
| 19 |
+
depth:
|
| 20 |
+
recipe: evaluation/depth|kitti_resize
|
| 21 |
+
optimizers:
|
| 22 |
+
depth:
|
| 23 |
+
recipe: optimizers|adam_20_05
|
| 24 |
+
pose:
|
| 25 |
+
recipe: optimizers|adam_20_05
|
| 26 |
+
datasets:
|
| 27 |
+
train:
|
| 28 |
+
recipe: datasets/kitti_tiny|train_selfsup_mr
|
| 29 |
+
validation:
|
| 30 |
+
recipe: datasets/kitti_tiny|validation_mr
|
| 31 |
+
|
configs/papers/define/scannet_temporal_test.yaml
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
seed: 42
|
| 3 |
+
min_epochs: 0
|
| 4 |
+
max_epochs: 0
|
| 5 |
+
find_unused_parameters: True
|
| 6 |
+
flip_lr_prob: 0.5
|
| 7 |
+
validate_first: True
|
| 8 |
+
validate_flipped: False
|
| 9 |
+
sync_batch_norm: True
|
| 10 |
+
evaluation:
|
| 11 |
+
rgb:
|
| 12 |
+
only_first: False
|
| 13 |
+
depth:
|
| 14 |
+
crop: ''
|
| 15 |
+
min_depth: 0.2
|
| 16 |
+
max_depth: 10.0
|
| 17 |
+
scale_output: resize
|
| 18 |
+
median_scaling: True
|
| 19 |
+
post_process: False
|
| 20 |
+
arch:
|
| 21 |
+
model:
|
| 22 |
+
checkpoint: /data/vidar/models/scannet_full.ckpt
|
| 23 |
+
file: perceiver/DefineGenericModel
|
| 24 |
+
use_pose_noise: []
|
| 25 |
+
use_virtual_cameras: []
|
| 26 |
+
virtual_cameras_eval: False
|
| 27 |
+
use_virtual_rgb: False
|
| 28 |
+
augment_canonical: False
|
| 29 |
+
encode_train: all
|
| 30 |
+
encode_eval: all
|
| 31 |
+
decode_train: all
|
| 32 |
+
decode_eval: all
|
| 33 |
+
decode_encodes: False
|
| 34 |
+
task_weights: [1.0,1.0]
|
| 35 |
+
scale_loss: True
|
| 36 |
+
sample_decoded_queries: 0.0
|
| 37 |
+
network:
|
| 38 |
+
tasks: [depth]
|
| 39 |
+
depth_range: [0.1,10.]
|
| 40 |
+
image_shape: [128,192]
|
| 41 |
+
num_bands_orig: 20
|
| 42 |
+
num_bands_dirs: 10
|
| 43 |
+
max_resolution_orig: 60
|
| 44 |
+
max_resolution_dirs: 60
|
| 45 |
+
to_world: True
|
| 46 |
+
d_latents: 512
|
| 47 |
+
num_latents: 1024
|
| 48 |
+
hidden_dropout_prob: 0.25
|
| 49 |
+
num_cross_attention_heads: 1
|
| 50 |
+
num_self_attends_per_block: 8
|
| 51 |
+
num_self_attention_heads: 8
|
| 52 |
+
decoder_num_heads: 1
|
| 53 |
+
rgb_feat_dim: 960
|
| 54 |
+
rgb_feat_type: resnet_all
|
| 55 |
+
downsample_encoder: 4
|
| 56 |
+
downsample_decoder: 4
|
| 57 |
+
upsample_convex: 'convex'
|
| 58 |
+
encoder_with_rgb: True
|
| 59 |
+
decoder_with_rgb: False
|
| 60 |
+
output_mode: inv_depth
|
| 61 |
+
sample_encoding_rays: 0
|
| 62 |
+
with_monodepth: False
|
| 63 |
+
datasets:
|
| 64 |
+
validation:
|
| 65 |
+
name: [ScanNetTemporal]
|
| 66 |
+
path: [/data/vidar/scannet_processed]
|
| 67 |
+
split: [test]
|
| 68 |
+
context: [-2,2]
|
| 69 |
+
stride: [10]
|
| 70 |
+
labels: [depth,pose]
|
| 71 |
+
cameras: [[0]]
|
| 72 |
+
dataloader:
|
| 73 |
+
batch_size: 1
|
| 74 |
+
pin_memory: True
|
| 75 |
+
num_workers: 4
|
| 76 |
+
augmentation:
|
| 77 |
+
resize: [128,192]
|
| 78 |
+
resize_supervision: True
|
| 79 |
+
preserve_depth: True
|
configs/papers/define/scannet_temporal_test_context_1.yaml
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
seed: 42
|
| 3 |
+
min_epochs: 0
|
| 4 |
+
max_epochs: 0
|
| 5 |
+
find_unused_parameters: True
|
| 6 |
+
flip_lr_prob: 0.5
|
| 7 |
+
validate_first: True
|
| 8 |
+
validate_flipped: False
|
| 9 |
+
sync_batch_norm: True
|
| 10 |
+
evaluation:
|
| 11 |
+
rgb:
|
| 12 |
+
only_first: False
|
| 13 |
+
depth:
|
| 14 |
+
crop: ''
|
| 15 |
+
min_depth: 0.2
|
| 16 |
+
max_depth: 10.0
|
| 17 |
+
scale_output: resize
|
| 18 |
+
median_scaling: True
|
| 19 |
+
post_process: False
|
| 20 |
+
arch:
|
| 21 |
+
model:
|
| 22 |
+
checkpoint: /data/vidar/models/scannet_full.ckpt
|
| 23 |
+
file: perceiver/DefineGenericModel
|
| 24 |
+
use_pose_noise: []
|
| 25 |
+
use_virtual_cameras: []
|
| 26 |
+
virtual_cameras_eval: False
|
| 27 |
+
use_virtual_rgb: False
|
| 28 |
+
augment_canonical: False
|
| 29 |
+
encode_train: all
|
| 30 |
+
encode_eval: all
|
| 31 |
+
decode_train: all
|
| 32 |
+
decode_eval: all
|
| 33 |
+
decode_encodes: False
|
| 34 |
+
task_weights: [1.0,1.0]
|
| 35 |
+
scale_loss: True
|
| 36 |
+
sample_decoded_queries: 0.0
|
| 37 |
+
network:
|
| 38 |
+
tasks: [depth]
|
| 39 |
+
depth_range: [0.1,10.]
|
| 40 |
+
image_shape: [128,192]
|
| 41 |
+
num_bands_orig: 20
|
| 42 |
+
num_bands_dirs: 10
|
| 43 |
+
max_resolution_orig: 60
|
| 44 |
+
max_resolution_dirs: 60
|
| 45 |
+
to_world: True
|
| 46 |
+
d_latents: 512
|
| 47 |
+
num_latents: 1024
|
| 48 |
+
hidden_dropout_prob: 0.25
|
| 49 |
+
num_cross_attention_heads: 1
|
| 50 |
+
num_self_attends_per_block: 8
|
| 51 |
+
num_self_attention_heads: 8
|
| 52 |
+
decoder_num_heads: 1
|
| 53 |
+
rgb_feat_dim: 960
|
| 54 |
+
rgb_feat_type: resnet_all
|
| 55 |
+
downsample_encoder: 4
|
| 56 |
+
downsample_decoder: 4
|
| 57 |
+
upsample_convex: 'convex'
|
| 58 |
+
encoder_with_rgb: True
|
| 59 |
+
decoder_with_rgb: False
|
| 60 |
+
output_mode: inv_depth
|
| 61 |
+
sample_encoding_rays: 0
|
| 62 |
+
with_monodepth: False
|
| 63 |
+
datasets:
|
| 64 |
+
validation:
|
| 65 |
+
name: [ScanNetTemporal]
|
| 66 |
+
path: [/data/vidar/scannet_processed]
|
| 67 |
+
split: [test]
|
| 68 |
+
context: [1]
|
| 69 |
+
stride: [10]
|
| 70 |
+
labels: [depth,pose]
|
| 71 |
+
cameras: [[0]]
|
| 72 |
+
dataloader:
|
| 73 |
+
batch_size: 1
|
| 74 |
+
pin_memory: True
|
| 75 |
+
num_workers: 4
|
| 76 |
+
augmentation:
|
| 77 |
+
resize: [128,192]
|
| 78 |
+
resize_supervision: True
|
| 79 |
+
preserve_depth: True
|
configs/papers/depthformer/inference_kitti.yaml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
arch:
|
| 4 |
+
model:
|
| 5 |
+
file: depth/DepthFormerModel
|
| 6 |
+
checkpoint: /data/vidar/models/papers/final/DepthFormer_MR_selfsup_KITTI.ckpt
|
| 7 |
+
warp_context: [-1,1]
|
| 8 |
+
match_context: [-1]
|
| 9 |
+
motion_masking: True
|
| 10 |
+
matching_augmentation: False
|
| 11 |
+
freeze_teacher_and_pose: 40
|
| 12 |
+
networks:
|
| 13 |
+
transformer:
|
| 14 |
+
recipe: networks/transformer|depthformer
|
| 15 |
+
mono_depth:
|
| 16 |
+
recipe: networks/mono_depth_res_net|default
|
| 17 |
+
depth_range: [0.1,100.0]
|
| 18 |
+
multi_depth:
|
| 19 |
+
recipe: networks/multi_depth_res_net|depthformer
|
| 20 |
+
pose:
|
| 21 |
+
recipe: networks/pose_net|default
|
| 22 |
+
evaluation:
|
| 23 |
+
depth:
|
| 24 |
+
recipe: evaluation/depth|kitti_resize
|
| 25 |
+
datasets:
|
| 26 |
+
validation:
|
| 27 |
+
recipe: datasets/kitti|validation_mr
|
| 28 |
+
labels: [depth,pose]
|
| 29 |
+
context: [-1,1]
|
| 30 |
+
save:
|
| 31 |
+
recipe: save|depth_splitname
|
configs/papers/fsm/inference_ddad.yaml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
arch:
|
| 4 |
+
model:
|
| 5 |
+
file: depth/FSMModel
|
| 6 |
+
checkpoint: /data/vidar/models/papers/final/FSM_MR_6cams_DDAD.ckpt
|
| 7 |
+
networks:
|
| 8 |
+
depth:
|
| 9 |
+
recipe: networks/focal_depth_res_net|fsm_ddad
|
| 10 |
+
pose:
|
| 11 |
+
recipe: networks/conv_pose_net|default
|
| 12 |
+
evaluation:
|
| 13 |
+
depth:
|
| 14 |
+
recipe: evaluation/depth|ddad_resize
|
| 15 |
+
datasets:
|
| 16 |
+
validation:
|
| 17 |
+
recipe: datasets/ddad|validation_6cams
|
| 18 |
+
save:
|
| 19 |
+
recipe: save|depth_splitname
|
configs/papers/packnet/inference_packnet.yaml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
arch:
|
| 4 |
+
model:
|
| 5 |
+
file: depth/SelfSupervisedModel
|
| 6 |
+
checkpoint: /data/vidar/models/papers/final/PackNet_MR_selfsup_KITTI.ckpt
|
| 7 |
+
networks:
|
| 8 |
+
depth:
|
| 9 |
+
recipe: networks/packnet|default
|
| 10 |
+
depth_range: [0.1,100.0]
|
| 11 |
+
pose:
|
| 12 |
+
recipe: networks/conv_pose_net|default
|
| 13 |
+
evaluation:
|
| 14 |
+
depth:
|
| 15 |
+
recipe: evaluation/depth|kitti_resize
|
| 16 |
+
datasets:
|
| 17 |
+
validation:
|
| 18 |
+
recipe: datasets/kitti|validation_mr
|
| 19 |
+
save:
|
| 20 |
+
recipe: save|depth_splitname
|
configs/papers/packnet/inference_resnet.yaml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
arch:
|
| 4 |
+
model:
|
| 5 |
+
file: depth/SelfSupervisedModel
|
| 6 |
+
checkpoint: /data/vidar/models/papers/final/ResNet18_MR_selfsup_KITTI.ckpt
|
| 7 |
+
networks:
|
| 8 |
+
depth:
|
| 9 |
+
recipe: networks/mono_depth_res_net|default
|
| 10 |
+
depth_range: [0.1,100.0]
|
| 11 |
+
pose:
|
| 12 |
+
recipe: networks/pose_net|default
|
| 13 |
+
evaluation:
|
| 14 |
+
depth:
|
| 15 |
+
recipe: evaluation/depth|kitti_resize
|
| 16 |
+
datasets:
|
| 17 |
+
validation:
|
| 18 |
+
recipe: datasets/kitti|validation_mr
|
| 19 |
+
save:
|
| 20 |
+
recipe: save|depth_splitname
|
configs/papers/selfcalib/ds_euroc.yaml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
validate_first: False
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
use_gt_intrinsics: False
|
| 8 |
+
networks:
|
| 9 |
+
depth:
|
| 10 |
+
recipe: networks/mono_depth_res_net|default
|
| 11 |
+
depth_range: [0.1,80.0]
|
| 12 |
+
pose:
|
| 13 |
+
recipe: networks/pose_net|default
|
| 14 |
+
intrinsics:
|
| 15 |
+
file: intrinsics/IntrinsicsNet
|
| 16 |
+
camera_model: 'DS'
|
| 17 |
+
shape: [256, 384]
|
| 18 |
+
losses:
|
| 19 |
+
reprojection:
|
| 20 |
+
recipe: losses/reprojection|default
|
| 21 |
+
smoothness:
|
| 22 |
+
recipe: losses/smoothness|default
|
| 23 |
+
evaluation:
|
| 24 |
+
depth:
|
| 25 |
+
recipe: evaluation/depth|kitti_resize
|
| 26 |
+
optimizers:
|
| 27 |
+
depth:
|
| 28 |
+
recipe: optimizers|adam_20_05
|
| 29 |
+
lr: 0.0002
|
| 30 |
+
pose:
|
| 31 |
+
recipe: optimizers|adam_20_05
|
| 32 |
+
lr: 0.0002
|
| 33 |
+
intrinsics:
|
| 34 |
+
recipe: optimizers|adam_20_05
|
| 35 |
+
lr: 0.01
|
| 36 |
+
datasets:
|
| 37 |
+
train:
|
| 38 |
+
recipe: datasets/euroc|train_selfsup
|
| 39 |
+
validation:
|
| 40 |
+
recipe: datasets/euroc|validation
|
configs/papers/selfcalib/eucm_euroc.yaml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
validate_first: False
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
use_gt_intrinsics: False
|
| 8 |
+
networks:
|
| 9 |
+
depth:
|
| 10 |
+
recipe: networks/mono_depth_res_net|default
|
| 11 |
+
depth_range: [0.1,80.0]
|
| 12 |
+
pose:
|
| 13 |
+
recipe: networks/pose_net|default
|
| 14 |
+
intrinsics:
|
| 15 |
+
file: intrinsics/IntrinsicsNet
|
| 16 |
+
camera_model: 'EUCM'
|
| 17 |
+
shape: [256, 384]
|
| 18 |
+
losses:
|
| 19 |
+
reprojection:
|
| 20 |
+
recipe: losses/reprojection|default
|
| 21 |
+
smoothness:
|
| 22 |
+
recipe: losses/smoothness|default
|
| 23 |
+
evaluation:
|
| 24 |
+
depth:
|
| 25 |
+
recipe: evaluation/depth|kitti_resize
|
| 26 |
+
optimizers:
|
| 27 |
+
depth:
|
| 28 |
+
recipe: optimizers|adam_20_05
|
| 29 |
+
lr: 0.0002
|
| 30 |
+
pose:
|
| 31 |
+
recipe: optimizers|adam_20_05
|
| 32 |
+
lr: 0.0002
|
| 33 |
+
intrinsics:
|
| 34 |
+
recipe: optimizers|adam_20_05
|
| 35 |
+
lr: 0.01
|
| 36 |
+
datasets:
|
| 37 |
+
train:
|
| 38 |
+
recipe: datasets/euroc|train_selfsup
|
| 39 |
+
validation:
|
| 40 |
+
recipe: datasets/euroc|validation
|
configs/papers/selfcalib/ucm_euroc.yaml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
validate_first: False
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
use_gt_intrinsics: False
|
| 8 |
+
networks:
|
| 9 |
+
depth:
|
| 10 |
+
recipe: networks/mono_depth_res_net|default
|
| 11 |
+
depth_range: [0.1,80.0]
|
| 12 |
+
pose:
|
| 13 |
+
recipe: networks/pose_net|default
|
| 14 |
+
intrinsics:
|
| 15 |
+
file: intrinsics/IntrinsicsNet
|
| 16 |
+
camera_model: 'UCM'
|
| 17 |
+
shape: [256, 384]
|
| 18 |
+
losses:
|
| 19 |
+
reprojection:
|
| 20 |
+
recipe: losses/reprojection|default
|
| 21 |
+
smoothness:
|
| 22 |
+
recipe: losses/smoothness|default
|
| 23 |
+
evaluation:
|
| 24 |
+
depth:
|
| 25 |
+
recipe: evaluation/depth|kitti_resize
|
| 26 |
+
optimizers:
|
| 27 |
+
depth:
|
| 28 |
+
recipe: optimizers|adam_20_05
|
| 29 |
+
lr: 0.0002
|
| 30 |
+
pose:
|
| 31 |
+
recipe: optimizers|adam_20_05
|
| 32 |
+
lr: 0.0002
|
| 33 |
+
intrinsics:
|
| 34 |
+
recipe: optimizers|adam_20_05
|
| 35 |
+
lr: 0.01
|
| 36 |
+
datasets:
|
| 37 |
+
train:
|
| 38 |
+
recipe: datasets/euroc|train_selfsup
|
| 39 |
+
validation:
|
| 40 |
+
recipe: datasets/euroc|validation
|
configs/papers/selfcalib/ucm_kitti.yaml
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
wrapper:
|
| 2 |
+
recipe: wrapper|default
|
| 3 |
+
validate_first: False
|
| 4 |
+
arch:
|
| 5 |
+
model:
|
| 6 |
+
file: depth/SelfSupervisedModel
|
| 7 |
+
use_gt_intrinsics: False
|
| 8 |
+
networks:
|
| 9 |
+
depth:
|
| 10 |
+
recipe: networks/mono_depth_res_net|default
|
| 11 |
+
depth_range: [0.1,100.0]
|
| 12 |
+
pose:
|
| 13 |
+
recipe: networks/pose_net|default
|
| 14 |
+
intrinsics:
|
| 15 |
+
file: intrinsics/IntrinsicsNet
|
| 16 |
+
camera_model: 'UCM'
|
| 17 |
+
shape: [192, 640]
|
| 18 |
+
losses:
|
| 19 |
+
reprojection:
|
| 20 |
+
recipe: losses/reprojection|default
|
| 21 |
+
smoothness:
|
| 22 |
+
recipe: losses/smoothness|default
|
| 23 |
+
evaluation:
|
| 24 |
+
depth:
|
| 25 |
+
recipe: evaluation/depth|kitti_resize
|
| 26 |
+
optimizers:
|
| 27 |
+
depth:
|
| 28 |
+
recipe: optimizers|adam_20_05
|
| 29 |
+
lr: 0.0002
|
| 30 |
+
pose:
|
| 31 |
+
recipe: optimizers|adam_20_05
|
| 32 |
+
lr: 0.0002
|
| 33 |
+
intrinsics:
|
| 34 |
+
recipe: optimizers|adam_20_05
|
| 35 |
+
lr: 0.01
|
| 36 |
+
datasets:
|
| 37 |
+
train:
|
| 38 |
+
recipe: datasets/kitti|train_selfsup_mr
|
| 39 |
+
dataloader:
|
| 40 |
+
batch_size: 8
|
| 41 |
+
validation:
|
| 42 |
+
recipe: datasets/kitti|validation_mr
|
| 43 |
+
dataloader:
|
| 44 |
+
batch_size: 1
|
configs/recipes/checkpoint.yaml
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
folder: /data/vidar/checkpoints
|
| 3 |
+
s3_bucket: miru-us-east-1/vidar/checkpoints
|
| 4 |
+
save_code: True
|
| 5 |
+
keep_top: 5
|
| 6 |
+
default_local:
|
| 7 |
+
folder: /data/vidar/checkpoints
|
| 8 |
+
keep_top: 5
|
configs/recipes/datasets/ddad.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_selfsup_6cams:
|
| 2 |
+
name: [Ouroboros]
|
| 3 |
+
path: [/data/vidar/DDAD/ddad.json]
|
| 4 |
+
split: [train]
|
| 5 |
+
augmentation:
|
| 6 |
+
jittering: [0.2, 0.2, 0.2, 0.05]
|
| 7 |
+
resize: [384, 640]
|
| 8 |
+
dataloader:
|
| 9 |
+
batch_size: 1
|
| 10 |
+
pin_memory: True
|
| 11 |
+
num_workers: 16
|
| 12 |
+
context: [-1,1]
|
| 13 |
+
labels: [depth]
|
| 14 |
+
cameras: [[1],[5],[6],[7],[8],[9]]
|
| 15 |
+
depth_type: [lidar]
|
| 16 |
+
repeat: [100]
|
| 17 |
+
validation_6cams:
|
| 18 |
+
name: [Ouroboros]
|
| 19 |
+
path: [/data/vidar/DDAD/ddad.json]
|
| 20 |
+
split: [val]
|
| 21 |
+
augmentation:
|
| 22 |
+
resize: [384, 640]
|
| 23 |
+
dataloader:
|
| 24 |
+
batch_size: 1
|
| 25 |
+
pin_memory: True
|
| 26 |
+
num_workers: 16
|
| 27 |
+
context: []
|
| 28 |
+
labels: [depth]
|
| 29 |
+
cameras: [[1],[5],[6],[7],[8],[9]]
|
| 30 |
+
depth_type: [lidar]
|
| 31 |
+
|
| 32 |
+
|
configs/recipes/datasets/ddad_tiny.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_selfsup_front:
|
| 2 |
+
name: [Ouroboros]
|
| 3 |
+
path: [/data/vidar/DDAD_tiny/ddad_tiny.json]
|
| 4 |
+
split: [train]
|
| 5 |
+
augmentation:
|
| 6 |
+
jittering: [0.2, 0.2, 0.2, 0.05]
|
| 7 |
+
resize: [384, 640]
|
| 8 |
+
dataloader:
|
| 9 |
+
batch_size: 1
|
| 10 |
+
pin_memory: True
|
| 11 |
+
num_workers: 16
|
| 12 |
+
context: [-1,1]
|
| 13 |
+
labels: [depth]
|
| 14 |
+
cameras: [[1]]
|
| 15 |
+
depth_type: [lidar]
|
| 16 |
+
repeat: [100]
|
| 17 |
+
validation_front:
|
| 18 |
+
name: [Ouroboros]
|
| 19 |
+
path: [/data/vidar/DDAD_tiny/ddad_tiny.json]
|
| 20 |
+
split: [train]
|
| 21 |
+
augmentation:
|
| 22 |
+
resize: [384, 640]
|
| 23 |
+
dataloader:
|
| 24 |
+
batch_size: 1
|
| 25 |
+
pin_memory: True
|
| 26 |
+
num_workers: 16
|
| 27 |
+
context: []
|
| 28 |
+
labels: [depth]
|
| 29 |
+
cameras: [[1]]
|
| 30 |
+
depth_type: [lidar]
|
| 31 |
+
|
| 32 |
+
|
configs/recipes/datasets/euroc.yaml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_selfsup:
|
| 2 |
+
name: [EUROC]
|
| 3 |
+
path: [/data/vidar/euroc/euroc_cam/cam0]
|
| 4 |
+
augmentation:
|
| 5 |
+
jittering: [0.2, 0.2, 0.2, 0.05]
|
| 6 |
+
resize: [256, 384]
|
| 7 |
+
dataloader:
|
| 8 |
+
batch_size: 16
|
| 9 |
+
pin_memory: True
|
| 10 |
+
num_workers: 16
|
| 11 |
+
context: [-1, 1]
|
| 12 |
+
strides: [[49999872, 50000128]]
|
| 13 |
+
cameras: [[0]]
|
| 14 |
+
split: [euroc-train]
|
| 15 |
+
labels: []
|
| 16 |
+
repeat: [1]
|
| 17 |
+
validation:
|
| 18 |
+
name: [EUROC]
|
| 19 |
+
path: [/data/vidar/euroc/euroc_has_depth/V2_01_easy_has_depth/mav0/]
|
| 20 |
+
augmentation:
|
| 21 |
+
resize: [256, 384]
|
| 22 |
+
dataloader:
|
| 23 |
+
batch_size: 1
|
| 24 |
+
pin_memory: True
|
| 25 |
+
num_workers: 16
|
| 26 |
+
split: [euroc-val]
|
| 27 |
+
labels: [depth]
|
| 28 |
+
context: []
|
| 29 |
+
strides: [[0, 0]]
|
| 30 |
+
cameras: [[0]]
|
configs/recipes/datasets/generic.yaml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default_train:
|
| 2 |
+
name: [Generic]
|
| 3 |
+
path: [data/generic]
|
| 4 |
+
split: ['']
|
| 5 |
+
context: [-1,1]
|
| 6 |
+
cameras: [[0]]
|
| 7 |
+
labels: []
|
| 8 |
+
extension: [jpg]
|
| 9 |
+
repeat: [100]
|
| 10 |
+
augmentation:
|
| 11 |
+
jittering: [0.2, 0.2, 0.2, 0.05]
|
| 12 |
+
resize: [384, 640]
|
| 13 |
+
dataloader:
|
| 14 |
+
batch_size: 1
|
| 15 |
+
pin_memory: True
|
| 16 |
+
num_workers: 16
|
| 17 |
+
default_validation:
|
| 18 |
+
name: [Generic]
|
| 19 |
+
path: [data/generic]
|
| 20 |
+
split: ['']
|
| 21 |
+
context: []
|
| 22 |
+
cameras: [[0]]
|
| 23 |
+
labels: []
|
| 24 |
+
extension: [jpg]
|
| 25 |
+
augmentation:
|
| 26 |
+
resize: [384, 640]
|
| 27 |
+
dataloader:
|
| 28 |
+
batch_size: 1
|
| 29 |
+
pin_memory: True
|
| 30 |
+
num_workers: 16
|
configs/recipes/datasets/kitti.yaml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_selfsup_mr:
|
| 2 |
+
name: [KITTI]
|
| 3 |
+
path: [/data/vidar/KITTI_raw]
|
| 4 |
+
split: [data_splits/eigen_zhou_files.txt]
|
| 5 |
+
augmentation:
|
| 6 |
+
jittering: [0.2, 0.2, 0.2, 0.05]
|
| 7 |
+
resize: [192, 640]
|
| 8 |
+
dataloader:
|
| 9 |
+
batch_size: 1
|
| 10 |
+
pin_memory: True
|
| 11 |
+
num_workers: 16
|
| 12 |
+
context: [-1,1]
|
| 13 |
+
labels: []
|
| 14 |
+
cameras: [[0]]
|
| 15 |
+
single_intrinsics: [True]
|
| 16 |
+
repeat: [1]
|
| 17 |
+
validation_mr:
|
| 18 |
+
name: [KITTI]
|
| 19 |
+
path: [/data/vidar/KITTI_raw]
|
| 20 |
+
split: [data_splits/eigen_test_files.txt]
|
| 21 |
+
augmentation:
|
| 22 |
+
resize: [192, 640]
|
| 23 |
+
dataloader:
|
| 24 |
+
batch_size: 1
|
| 25 |
+
pin_memory: True
|
| 26 |
+
num_workers: 16
|
| 27 |
+
context: []
|
| 28 |
+
labels: [depth]
|
| 29 |
+
cameras: [[0]]
|
| 30 |
+
single_intrinsics: [True]
|
| 31 |
+
depth_type: [velodyne,groundtruth]
|
configs/recipes/datasets/kitti_tiny.yaml
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
train_selfsup_mr:
|
| 2 |
+
name: [KITTI]
|
| 3 |
+
path: [/data/vidar/KITTI_tiny]
|
| 4 |
+
split: [kitti_tiny.txt]
|
| 5 |
+
augmentation:
|
| 6 |
+
jittering: [0.2,0.2,0.2,0.05]
|
| 7 |
+
resize: [192,640]
|
| 8 |
+
dataloader:
|
| 9 |
+
batch_size: 1
|
| 10 |
+
pin_memory: True
|
| 11 |
+
num_workers: 16
|
| 12 |
+
context: [-1,1]
|
| 13 |
+
labels: []
|
| 14 |
+
cameras: [[0]]
|
| 15 |
+
single_intrinsics: [True]
|
| 16 |
+
repeat: [100]
|
| 17 |
+
depth_type: [velodyne]
|
| 18 |
+
validation_mr:
|
| 19 |
+
name: [KITTI]
|
| 20 |
+
path: [/data/vidar/KITTI_tiny]
|
| 21 |
+
split: [kitti_tiny.txt]
|
| 22 |
+
augmentation:
|
| 23 |
+
resize: [192,640]
|
| 24 |
+
dataloader:
|
| 25 |
+
batch_size: 1
|
| 26 |
+
pin_memory: True
|
| 27 |
+
num_workers: 16
|
| 28 |
+
context: []
|
| 29 |
+
labels: [depth]
|
| 30 |
+
cameras: [[0]]
|
| 31 |
+
single_intrinsics: [True]
|
| 32 |
+
depth_type: [velodyne]
|
configs/recipes/datasets/vkitti2.yaml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
tiny:
|
| 2 |
+
name: [VKITTI2]
|
| 3 |
+
path: [/data/vidar/VKITTI2_tiny]
|
| 4 |
+
split: ['']
|
| 5 |
+
augmentation:
|
| 6 |
+
resize: [192, 640]
|
| 7 |
+
resize_supervision: True
|
| 8 |
+
dataloader:
|
| 9 |
+
batch_size: 1
|
| 10 |
+
pin_memory: True
|
| 11 |
+
num_workers: 16
|
| 12 |
+
context: [-1,1]
|
| 13 |
+
labels: [depth,pose]
|
| 14 |
+
labels_context: [depth,pose]
|
| 15 |
+
cameras: [[0]]
|
| 16 |
+
depth_type: [zbuffer]
|
configs/recipes/evaluation/depth.yaml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
kitti_resize:
|
| 2 |
+
crop: garg
|
| 3 |
+
min_depth: 0.0
|
| 4 |
+
max_depth: 80.0
|
| 5 |
+
scale_output: resize
|
| 6 |
+
median_scaling: True
|
| 7 |
+
post_process: True
|
| 8 |
+
kitti_crop:
|
| 9 |
+
crop: garg
|
| 10 |
+
min_depth: 0.0
|
| 11 |
+
max_depth: 80.0
|
| 12 |
+
scale_output: top-center
|
| 13 |
+
median_scaling: True
|
| 14 |
+
post_process: True
|
| 15 |
+
ddad_resize:
|
| 16 |
+
crop: ''
|
| 17 |
+
min_depth: 0.0
|
| 18 |
+
max_depth: 200.0
|
| 19 |
+
scale_output: resize
|
| 20 |
+
median_scaling: True
|
| 21 |
+
post_process: True
|
configs/recipes/losses/reprojection.yaml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
file: ReprojectionLoss
|
| 3 |
+
automasking: True
|
| 4 |
+
reprojection_reduce_op: min
|
| 5 |
+
jitter_identity_reprojection: 0.00001
|
| 6 |
+
photometric:
|
| 7 |
+
file: PhotometricLoss
|
| 8 |
+
weight: 1.0
|
| 9 |
+
alpha: 0.85
|
configs/recipes/losses/smoothness.yaml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
file: SmoothnessLoss
|
| 3 |
+
normalize: True
|
| 4 |
+
weight: 0.0001
|
| 5 |
+
gamma: 0.5
|
configs/recipes/losses/supervised_depth.yaml
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
huber:
|
| 2 |
+
file: SupervisedDepthLoss
|
| 3 |
+
gamma: 0.5
|
| 4 |
+
method: huber
|
| 5 |
+
mask_sparse: True
|
| 6 |
+
abs_rel:
|
| 7 |
+
file: SupervisedDepthLoss
|
| 8 |
+
gamma: 0.5
|
| 9 |
+
method: abs_rel
|
| 10 |
+
mask_sparse: True
|
| 11 |
+
l1log:
|
| 12 |
+
file: SupervisedDepthLoss
|
| 13 |
+
gamma: 0.5
|
| 14 |
+
method: l1log
|
| 15 |
+
mask_sparse: True
|
| 16 |
+
l1:
|
| 17 |
+
file: SupervisedDepthLoss
|
| 18 |
+
gamma: 0.5
|
| 19 |
+
method: l1
|
| 20 |
+
mask_sparse: True
|
| 21 |
+
mse:
|
| 22 |
+
file: SupervisedDepthLoss
|
| 23 |
+
gamma: 0.5
|
| 24 |
+
method: mse
|
| 25 |
+
mask_sparse: True
|
| 26 |
+
rmse:
|
| 27 |
+
file: SupervisedDepthLoss
|
| 28 |
+
gamma: 0.5
|
| 29 |
+
method: rmse
|
| 30 |
+
mask_sparse: True
|
| 31 |
+
mixture:
|
| 32 |
+
file: SupervisedDepthLoss
|
| 33 |
+
gamma: 0.5
|
| 34 |
+
method: mixture
|
| 35 |
+
mask_sparse: True
|
| 36 |
+
cross_entropy:
|
| 37 |
+
file: SupervisedDepthLoss
|
| 38 |
+
gamma: 0.5
|
| 39 |
+
method: cross_entropy
|
| 40 |
+
mask_sparse: True
|
configs/recipes/networks/conv_pose_net.yaml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
file: pose/ConvPoseNet
|
| 3 |
+
version: 18
|
| 4 |
+
pretrained: True
|
| 5 |
+
num_rgb_in: 2
|
configs/recipes/networks/focal_depth_res_net.yaml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
fsm_ddad:
|
| 2 |
+
file: depth/FocalDepthResNet
|
| 3 |
+
encoder:
|
| 4 |
+
version: 18
|
| 5 |
+
pretrained: True
|
| 6 |
+
num_rgb_in: 1
|
| 7 |
+
decoder:
|
| 8 |
+
use_skips: True
|
| 9 |
+
activation: sigmoid
|
| 10 |
+
num_ch_out: 1
|
| 11 |
+
min_depth: 0.005
|
| 12 |
+
max_depth: 0.3
|
configs/recipes/networks/mono_depth_res_net.yaml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
file: depth/MonoDepthResNet
|
| 3 |
+
encoder:
|
| 4 |
+
version: 18
|
| 5 |
+
pretrained: True
|
| 6 |
+
num_rgb_in: 1
|
| 7 |
+
decoder:
|
| 8 |
+
use_skips: True
|
| 9 |
+
activation: sigmoid
|
| 10 |
+
num_ch_out: 1
|
configs/recipes/networks/multi_depth_res_net.yaml
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
depthformer:
|
| 2 |
+
file: depth/MultiDepthResNet
|
| 3 |
+
encoder:
|
| 4 |
+
version: 18
|
| 5 |
+
pretrained: True
|
| 6 |
+
input_shape: [192,640]
|
| 7 |
+
adaptive_bins: True
|
| 8 |
+
depth_range: [0.1,100.]
|
| 9 |
+
depth_bin_range: [0.1,100.0]
|
| 10 |
+
depth_binning: sid
|
| 11 |
+
num_depth_bins: 128
|
| 12 |
+
decoder:
|
| 13 |
+
use_skips: True
|
| 14 |
+
use_aux_depth: False
|
| 15 |
+
activation: sigmoid
|
| 16 |
+
num_ch_out: 1
|
| 17 |
+
depth_range: [0.1,100.]
|
configs/recipes/networks/packnet.yaml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
file: depth/PackNet
|
| 3 |
+
encoder:
|
| 4 |
+
version: 18
|
| 5 |
+
pretrained: True
|
| 6 |
+
num_rgb_in: 1
|
| 7 |
+
decoder:
|
| 8 |
+
use_skips: True
|
| 9 |
+
activation: sigmoid
|
| 10 |
+
num_ch_out: 1
|
configs/recipes/networks/pose_net.yaml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
file: pose/PoseNet
|
| 3 |
+
version: 18
|
| 4 |
+
pretrained: True
|
| 5 |
+
num_rgb_in: 2
|
configs/recipes/networks/transformer.yaml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
depthformer:
|
| 2 |
+
file: transformers/MatchModule
|
| 3 |
+
context_adjustment:
|
| 4 |
+
expansion_ratio: 4
|
| 5 |
+
feat_dim: 16
|
| 6 |
+
num_blocks: 8
|
| 7 |
+
channel_dim: 128
|
| 8 |
+
nheads: 8
|
| 9 |
+
num_attn_layers: 6
|
| 10 |
+
min_depth: 0.1
|
| 11 |
+
max_depth: 100.0
|
| 12 |
+
num_bins: 128
|
configs/recipes/optimizers.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
adam_20_05:
|
| 2 |
+
name: Adam
|
| 3 |
+
lr: 0.0001
|
| 4 |
+
scheduler:
|
| 5 |
+
name: StepLR
|
| 6 |
+
step_size: 20
|
| 7 |
+
gamma: 0.5
|
configs/recipes/save.yaml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
depth_splitname:
|
| 2 |
+
folder: /data/vidar/save
|
| 3 |
+
naming: splitname
|
| 4 |
+
rgb: [tgt]
|
| 5 |
+
depth: [viz,npz]
|
configs/recipes/wandb.yaml
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
folder: /data/vidar/wandb
|
| 3 |
+
entity: tri
|
| 4 |
+
project: vidar
|
| 5 |
+
num_validation_logs: 5
|
configs/recipes/wrapper.yaml
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
default:
|
| 2 |
+
seed: 42
|
| 3 |
+
min_epochs: 0
|
| 4 |
+
max_epochs: 50
|
| 5 |
+
grad_scaler: False
|
| 6 |
+
find_unused_parameters: True
|
| 7 |
+
flip_lr_prob: 0.5
|
| 8 |
+
validate_first: True
|
| 9 |
+
validate_flipped: True
|
| 10 |
+
sync_batch_norm: True
|
data/generic/scene1/15616458296936490.jpg
ADDED
|
data/generic/scene1/15616458297936490.jpg
ADDED
|
data/generic/scene1/15616458298936492.jpg
ADDED
|
data/generic/scene1/15616458299936482.jpg
ADDED
|
data/generic/scene1/15616458300936480.jpg
ADDED
|
data/masks/ddad/01.png
ADDED
|
Git LFS Details
|
data/masks/ddad/05.png
ADDED
|
Git LFS Details
|
data/masks/ddad/06.png
ADDED
|
Git LFS Details
|
data/masks/ddad/07.png
ADDED
|
Git LFS Details
|