# This file provides the kernel parameters for mySVM as wrapped for MiningMart.
# 
# Created 1st of February, 2002 by Timm Euler, University of Dortmund.
# 
# Comment lines start with '#'.
#
# This file includes one set of parameter definitions for each kernel type. 
# The kernel type for a given run is specified in the M4-Model, in table
# 'PARAMETER_T' as an object of type VALUE. According to that kernel type,
# the wrapper for mySVM reads the corresponding parameters from this file.
# If the kernel type is 'dot' (linear kernel), no additional parameters are
# needed and this file is superfluous. For other kernel types, the parameters
# will be read from this file, which must be stored in "/Compiler/ML/etc/".
#
# Each parameter collection in this file starts with "@" followed by the
# kernel type as specified for mySVM. The syntax must be exactly the one needed
# for mySVM!
#
# The entries in this file are default values which may be edited. The
# default entries are repeated as comments so that they can easily be restored.

# Parameter for polynomial kernel (default 2):

@polynomial
degree 2

# Parameter for radial basis function kernel (default 0.1):

@radial
gamma 0.1

# Parameters for neural net kernel (default a = 0.5, b = 0.5):

@neural
a 0.5
b 0.5

# Parameters for anova kernel (default gamma = 0.1, degree = 2):

@anova
gamma 0.1
degree 2

# Parameters for user-defined or aggregated kernels can be
# specified in the following, in exact mySVM-Format.