forked from gburtini/Learning-Library-for-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLearningLibrary.php
More file actions
18 lines (16 loc) · 750 Bytes
/
LearningLibrary.php
File metadata and controls
18 lines (16 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/*
Copyright (c) 2011 Giuseppe Burtini <joe@truephp.com> - released under the GNU GPL version 2 or later.
See LICENSE for more information. Do not redistribute any part of Learning Library without understanding and respecting the license.
*/
require_once "lib/accessory/functions.php";
require_once "lib/accessory/matrix.php";
require_once "lib/accessory/scaling.php";
require_once "lib/parametric/regression.php";
//require_once "lib/parametric/neural_network.php";
require_once "lib/parametric/anomaly_detection.php";
require_once "lib/parametric/naivebayes.php";
require_once "lib/parametric/sann.php";
require_once "lib/unsupervised/kmeans.php";
require_once "lib/unsupervised/knn.php";
?>