-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d133c93
commit 852f214
Showing
4 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
from .gp import SIGP, NonTensorialInputs | ||
|
||
__all__ = ["SIGP", "NonTensorialInputs"] | ||
|
||
__version__ = "0.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from .braun_blanquet_kernel import BraunBlanquetKernel | ||
from .dice_kernel import DiceKernel | ||
from .faith_kernel import FaithKernel | ||
from .forbes_kernel import ForbesKernel | ||
from .inner_product_kernel import InnerProductKernel | ||
from .intersection_kernel import IntersectionKernel | ||
from .minmax_kernel import MinMaxKernel | ||
from .otsuka_kernel import OtsukaKernel | ||
from .rand_kernel import RandKernel | ||
from .rogers_tanimoto_kernel import RogersTanimotoKernel | ||
from .russell_rao_kernel import RussellRaoKernel | ||
from .sogenfrei_kernel import SogenfreiKernel | ||
from .sokal_sneath_kernel import SokalSneathKernel | ||
from .tanimoto_kernel import TanimotoKernel | ||
|
||
__all__ = [ | ||
"BraunBlanquetKernel", | ||
"DiceKernel", | ||
"FaithKernel", | ||
"ForbesKernel", | ||
"InnerProductKernel", | ||
"IntersectionKernel", | ||
"MinMaxKernel", | ||
"OtsukaKernel", | ||
"RandKernel", | ||
"RogersTanimotoKernel", | ||
"RussellRaoKernel", | ||
"SogenfreiKernel", | ||
"SokalSneathKernel", | ||
"TanimotoKernel", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from .grakel_kernels import ( | ||
VertexHistogramKernel, | ||
EdgeHistogramKernel, | ||
WeisfeilerLehmanKernel, | ||
NeighborhoodHashKernel, | ||
RandomWalkKernel, | ||
RandomWalkLabeledKernel, | ||
ShortestPathKernel, | ||
ShortestPathLabeledKernel, | ||
GraphletSamplingKernel, | ||
) | ||
|
||
__all__ = [ | ||
"VertexHistogramKernel", | ||
"EdgeHistogramKernel", | ||
"WeisfeilerLehmanKernel", | ||
"NeighborhoodHashKernel", | ||
"RandomWalkKernel", | ||
"RandomWalkLabeledKernel", | ||
"ShortestPathKernel", | ||
"ShortestPathLabeledKernel", | ||
"GraphletSamplingKernel", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from .sskkernel import SubsequenceStringKernel | ||
|
||
__all__ = ["SubsequenceStringKernel"] |