CalculateVertexVertexEdgeHistKernel {graphkernels}R Documentation

Linear kernel combination of vertex label histograms and vertex-edge label histograms

Description

This function calculates a kernel matrix of the linear kernel combination KHK_{H} of vertex label histograms KVHK_{VH} and vertex-edge label histograms KVEHK_{VEH}.

Usage

CalculateVertexVertexEdgeHistKernel(G, par)

Arguments

G

a list of igraph graphs

par

a coefficient λ\lambda, with which the resulting kernel is given as KVH+λKVEHK_{VH} + \lambda K_{VEH}

Value

a kernel matrix that is equivalent to KVH+λKVEHK_{VH} + \lambda K_{VEH}

Author(s)

Mahito Sugiyama

References

Sugiyama, M., Borgwardt, K. M.: Halting in Random Walk Kernels, Advances in Neural Information Processing Systems (NIPS 2015), 28, 1630-1638 (2015) https://papers.nips.cc/paper/5688-halting-in-random-walk-kernels.pdf.

Examples

data(mutag)
K <- CalculateVertexVertexEdgeHistKernel(mutag, .1)

[Package graphkernels version 1.6.1 Index]