ibaiGorordo
commited on
Commit
•
719f66e
1
Parent(s):
803143d
Update README.md
Browse files
README.md
CHANGED
@@ -16,4 +16,12 @@ IEEE Transactions on Circuits and Systems for Video Technology (TCSVT)
|
|
16 |
|
17 |
# Official Repository: [LapDepth-release](https://github.com/tjqansthd/LapDepth-release)
|
18 |
|
19 |
-
# License: [GPL-3.0 license](https://github.com/tjqansthd/LapDepth-release/blob/master/LICENSE)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
# Official Repository: [LapDepth-release](https://github.com/tjqansthd/LapDepth-release)
|
18 |
|
19 |
+
# License: [GPL-3.0 license](https://github.com/tjqansthd/LapDepth-release/blob/master/LICENSE)
|
20 |
+
|
21 |
+
# Usage
|
22 |
+
```python
|
23 |
+
from model import LDRN
|
24 |
+
model = LDRN()
|
25 |
+
model.load_state_dict(torch.load("lap_depth_kitti_grad.pkl"), strict=False)
|
26 |
+
model.eval()
|
27 |
+
```
|