Skip to content

Instantly share code, notes, and snippets.

View greevex's full-sized avatar

Gregory Ostrovsky greevex

View GitHub Profile
@ivanpepelko
ivanpepelko / fann.stub.php
Last active April 26, 2022 13:13
PHP FANN stub for editors and IDEs
<?php
define('FANN_TRAIN_INCREMENTAL', 0);
define('FANN_TRAIN_BATCH', 1);
define('FANN_TRAIN_RPROP', 2);
define('FANN_TRAIN_QUICKPROP', 3);
define('FANN_TRAIN_SARPROP', 4);
define('FANN_LINEAR', 0);
define('FANN_THRESHOLD', 1);
define('FANN_THRESHOLD_SYMMETRIC', 2);