<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.remote.other.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'book.svm.php',
    1 => 'SVM',
    2 => 'Support Vector Machine',
  ),
  'up' => 
  array (
    0 => 'refs.remote.other.php',
    1 => 'Diğer Hizmetler',
  ),
  'prev' => 
  array (
    0 => 'stomp.getdetails.php',
    1 => 'StompException::getDetails',
  ),
  'next' => 
  array (
    0 => 'svm.setup.php',
    1 => 'Yapılandırma/Kurulum',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/svm/book.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/book.svm.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="book.svm" class="book">
 
 <h1 class="title">Support Vector Machine</h1>
 

 <div id="intro.svm" class="preface">
  <h1 class="title">Giriş</h1>
  <div class="warning"><strong class="warning">Uyarı</strong>
<p class="simpara">Bu eklenti <em>DENEYSELDİR</em>. Bu eklentinin davranışı,
işlev isimleri ve tüm belgeleri PHP&#039;nin sonraki sürümlerinde hiçbir duyuru
yapılmaksızın değiştirilebilir. Bu risk göze alınamayacaksa bu eklenti
kullanılmamalıdır.</p></div>
  <p class="simpara">
   LibSVM is an efficient solver for SVM classification and regression problems.
   The svm extension wraps this in a PHP interface for easy use in PHP scripts.
  </p>
 </div>

 




 





 




 





<ul class="chunklist chunklist_book"><li><a href="svm.setup.php">Yapılandırma/Kurulum</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="svm.requirements.php">Gereksinimler</a></li><li><a href="svm.installation.php">Kurulum</a></li></ul></li><li><a href="svm.examples.php">&Ouml;rnekler</a></li><li><a href="class.svm.php">SVM</a> — The SVM class<ul class="chunklist chunklist_book chunklist_children"><li><a href="svm.construct.php">SVM::__construct</a> — Construct a new SVM object</li><li><a href="svm.crossvalidate.php">SVM::crossvalidate</a> — Test training params on subsets of the training data</li><li><a href="svm.getoptions.php">SVM::getOptions</a> — Return the current training parameters</li><li><a href="svm.setoptions.php">SVM::setOptions</a> — Set training parameters</li><li><a href="svm.train.php">SVM::train</a> — Create a SVMModel based on training data</li></ul></li><li><a href="class.svmmodel.php">SVMModel</a> — The SVMModel class<ul class="chunklist chunklist_book chunklist_children"><li><a href="svmmodel.checkprobabilitymodel.php">SVMModel::checkProbabilityModel</a> — Returns true if the model has probability information</li><li><a href="svmmodel.construct.php">SVMModel::__construct</a> — Construct a new SVMModel</li><li><a href="svmmodel.getlabels.php">SVMModel::getLabels</a> — Get the labels the model was trained on</li><li><a href="svmmodel.getnrclass.php">SVMModel::getNrClass</a> — Returns the number of classes the model was trained with</li><li><a href="svmmodel.getsvmtype.php">SVMModel::getSvmType</a> — Get the SVM type the model was trained with</li><li><a href="svmmodel.getsvrprobability.php">SVMModel::getSvrProbability</a> — Get the sigma value for regression types</li><li><a href="svmmodel.load.php">SVMModel::load</a> — Load a saved SVM Model</li><li><a href="svmmodel.predict.php">SVMModel::predict</a> — Predict a value for previously unseen data</li><li><a href="svmmodel.predict-probability.php">SVMModel::predict_probability</a> — Return class probabilities for previous unseen data</li><li><a href="svmmodel.save.php">SVMModel::save</a> — Save a model to a file</li></ul></li></ul></div><?php manual_footer($setup); ?>