Browse Source

Merge pull request #45 from jajupmochi/v0.2.x

V0.2.x
master
linlin GitHub 4 years ago
parent
commit
cd98b124fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions
  1. +1
    -0
      gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp.py
  2. +1
    -0
      gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp_space.py
  3. +1
    -1
      gklearn/kernels/sylvester_equation.py

+ 1
- 0
gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp.py View File

@@ -59,6 +59,7 @@ OUT_MEM_LIST = set({('StructuralSP', 'DD', 'True'),
('ShortestPath', 'TWITTER-Real-Graph-Partial', 'True'), ('ShortestPath', 'TWITTER-Real-Graph-Partial', 'True'),
('ShortestPath', 'TWITTER-Real-Graph-Partial', 'False'), ('ShortestPath', 'TWITTER-Real-Graph-Partial', 'False'),
('StructuralSP', 'TWITTER-Real-Graph-Partial', 'True'), ('StructuralSP', 'TWITTER-Real-Graph-Partial', 'True'),
('StructuralSP', 'TWITTER-Real-Graph-Partial', 'False'),
}) })


MISS_LABEL_LIST = set({('StructuralSP', 'GREC', 'True'), MISS_LABEL_LIST = set({('StructuralSP', 'GREC', 'True'),


+ 1
- 0
gklearn/experiments/thesis/graph_kernels/fcsp/run_jobs_compare_fcsp_space.py View File

@@ -130,6 +130,7 @@ OUT_MEM_LIST = set({('ShortestPath', 'REDDIT-BINARY', 'True'),
('ShortestPath', 'DBLP_v1', 'True'), ('ShortestPath', 'DBLP_v1', 'True'),
('ShortestPath', 'DBLP_v1', 'False'), ('ShortestPath', 'DBLP_v1', 'False'),
('StructuralSP', 'DBLP_v1', 'True'), ('StructuralSP', 'DBLP_v1', 'True'),
('StructuralSP', 'DBLP_v1', 'False'),
('ShortestPath', 'COLLAB', 'True'), ('ShortestPath', 'COLLAB', 'True'),
('ShortestPath', 'COLLAB', 'False'), ('ShortestPath', 'COLLAB', 'False'),
('StructuralSP', 'COLLAB', 'True'), ('StructuralSP', 'COLLAB', 'True'),


+ 1
- 1
gklearn/kernels/sylvester_equation.py View File

@@ -14,7 +14,6 @@ import sys
from gklearn.utils import get_iters from gklearn.utils import get_iters
import numpy as np import numpy as np
import networkx as nx import networkx as nx
from control import dlyap
from gklearn.utils.parallel import parallel_gm, parallel_me from gklearn.utils.parallel import parallel_gm, parallel_me
from gklearn.kernels import RandomWalkMeta from gklearn.kernels import RandomWalkMeta


@@ -23,6 +22,7 @@ class SylvesterEquation(RandomWalkMeta):




def __init__(self, **kwargs): def __init__(self, **kwargs):
from control import dlyap
super().__init__(**kwargs) super().__init__(**kwargs)






Loading…
Cancel
Save