We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 24bdd7b + a96d92b commit 54abed9Copy full SHA for 54abed9
NeuFlow/neuflow.py
@@ -7,13 +7,14 @@
7
from NeuFlow import corr
8
from NeuFlow import refine
9
from NeuFlow import upsample
10
-from NeuFlow import utils
11
from NeuFlow import config
12
13
-import time
+from huggingface_hub import PyTorchModelHubMixin
14
15
16
-class NeuFlow(torch.nn.Module):
+class NeuFlow(torch.nn.Module,
+ PyTorchModelHubMixin,
17
+ repo_url="https://github.com/neufieldrobotics/NeuFlow_v2", license="apache-2.0", pipeline_tag="image-to-image"):
18
def __init__(self):
19
super(NeuFlow, self).__init__()
20
0 commit comments