ibaiGorordo commited on
Commit
ee495ec
·
1 Parent(s): 915d009

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -1
README.md CHANGED
@@ -18,4 +18,12 @@ IEEE Transactions on Circuits and Systems for Video Technology (TCSVT)
18
 
19
  # Official Repository: [LapDepth-release](https://github.com/tjqansthd/LapDepth-release)
20
 
21
- # License: [GPL-3.0 license](https://github.com/tjqansthd/LapDepth-release/blob/master/LICENSE)
 
 
 
 
 
 
 
 
 
18
 
19
  # Official Repository: [LapDepth-release](https://github.com/tjqansthd/LapDepth-release)
20
 
21
+ # License: [GPL-3.0 license](https://github.com/tjqansthd/LapDepth-release/blob/master/LICENSE)
22
+
23
+ # Usage
24
+ ```python
25
+ from model import LDRN
26
+ model = LDRN()
27
+ model.load_state_dict(torch.load("lap_depth_nyu.pkl"), strict=False)
28
+ model.eval()
29
+ ```