Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
FurKan7 committed Jul 7, 2024
1 parent a49a303 commit c626606
Show file tree
Hide file tree
Showing 65,261 changed files with 1,957,909 additions and 1 deletion.
The diff you're trying to view is too large. We only load the first 3000 changed files.
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2020 Matthias Fey <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include LICENSE

recursive-include figures *
recursive-include examples *
24 changes: 23 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# HybridGraph
<h1 align="center">Image Matching Using Hybrid Graph Neural Networks</h1>


PyTorch implementation of Image Keypoint Matching for Graph Neural Networks. Code based on [DGMC](https://github.com/rusty1s/deep-graph-matching-consensus). To run the aglorithm presented in the paper use:

```
$ cd examples/
$ python pascal.py
$ python willow.py
$ python pascal_pf.py
```

The unmodified scripts use the basline DGMC algorithm.

## Requirements

* **[PyTorch](https://pytorch.org/get-started/locally/)** (>=1.2.0)
* **[PyTorch Geometric](https://github.com/rusty1s/pytorch_geometric)** (>=1.5.0)
* **[KeOps](https://github.com/getkeops/keops)** (>=1.1.0)

## Installation
```
$ python setup.py install
Binary file added SL0.p
Binary file not shown.
Binary file added SL1.p
Binary file not shown.
Binary file added SL2.p
Binary file not shown.
Binary file added SL3.p
Binary file not shown.
Binary file added SL4.p
Binary file not shown.
11 changes: 11 additions & 0 deletions build/lib/dgmc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import dgmc.models
import dgmc.utils
from dgmc.models.dgmc import DGMC

__version__ = '1.0.0'

__all__ = [
'dgmc',
'DGMC',
'__version__',
]
13 changes: 13 additions & 0 deletions build/lib/dgmc/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from .mlp import MLP
from .gin import GIN
from .spline import SplineCNN
from .rel import RelCNN
from .dgmc import DGMC

__all__ = [
'MLP',
'GIN',
'SplineCNN',
'RelCNN',
'DGMC',
]
Loading

0 comments on commit c626606

Please sign in to comment.