ibaiGorordo commited on
Commit
6ced482
1 Parent(s): 95d15c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
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.pkl"), strict=False)
26
+ model.eval()
27
+ ```