egorchistov commited on
Commit
91a6f14
·
verified ·
1 Parent(s): af0317d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -1
README.md CHANGED
@@ -4,8 +4,11 @@ language:
4
  license: bsd-3-clause
5
  tags:
6
  - arxiv:2506.23151
 
7
  pipeline_tag: image-to-image
8
  library_name: pytorch
 
 
9
  ---
10
 
11
  # MEMFOF-Tartan-T-TSKH
@@ -33,5 +36,16 @@ model = MEMFOF.from_pretrained("egorchistov/MEMFOF-Tartan-T-TSKH").eval().to(dev
33
 
34
  with torch.inference_mode():
35
  example_input = torch.randint(0, 256, [1, 3, 3, 1080, 1920], device=device) # [B=1, T=3, C=3, H=1080, W=1920]
36
- backward_flow, forward_flow = model(example_input).unbind(dim=1) # [B=1, C=2, H=1080, W=1920]
 
 
 
 
 
 
 
 
 
 
 
37
  ```
 
4
  license: bsd-3-clause
5
  tags:
6
  - arxiv:2506.23151
7
+ - optical-flow-estimation
8
  pipeline_tag: image-to-image
9
  library_name: pytorch
10
+ base_model:
11
+ - egorchistov/MEMFOF-Tartan-T
12
  ---
13
 
14
  # MEMFOF-Tartan-T-TSKH
 
36
 
37
  with torch.inference_mode():
38
  example_input = torch.randint(0, 256, [1, 3, 3, 1080, 1920], device=device) # [B=1, T=3, C=3, H=1080, W=1920]
39
+ backward_flow, forward_flow = model(example_input)["flow"][-1].unbind(dim=1) # [B=1, C=2, H=1080, W=1920]
40
+ ```
41
+
42
+ ## 📚 Citation
43
+
44
+ ```
45
+ @article{bargatin2025memfof,
46
+ title={MEMFOF: High-Resolution Training for Memory-Efficient Multi-Frame Optical Flow Estimation},
47
+ author={Bargatin, Vladislav and Chistov, Egor and Yakovenko, Alexander and Vatolin, Dmitriy},
48
+ journal={arXiv preprint arXiv:2506.23151},
49
+ year={2025}
50
+ }
51
  ```