You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can optionally use our alternate (efficent) implementation by compiling the provided cuda extension
36
-
```Shell
37
-
cd alt_cuda_corr && python setup.py install &&cd ..
38
-
```
39
-
and running `demo.py` and `evaluate.py` with the `--alternate_corr` flag.Note, this implementation is somewhat slower than all-pairs, but uses significantly less GPU memory during the forward pass.
40
-
41
-
42
34
## Required Data
43
35
To evaluate/train RAFT, you will need to download the required datasets.
@@ -83,3 +75,10 @@ If you have a RTX GPU, training can be accelerated using mixed precision. You ca
83
75
```Shell
84
76
./train_mixed.sh
85
77
```
78
+
79
+
## (Optional) Efficent Implementation
80
+
You can optionally use our alternate (efficent) implementation by compiling the provided cuda extension
81
+
```Shell
82
+
cd alt_cuda_corr && python setup.py install &&cd ..
83
+
```
84
+
and running `demo.py` and `evaluate.py` with the `--alternate_corr` flag Note, this implementation is somewhat slower than all-pairs, but uses significantly less GPU memory during the forward pass.
0 commit comments