PHP Classes

File: CLASSES/Headers.php

Recommend this page to a friend!
  Classes of Cuthbert Martin Lwinga   PHP Neural Net Library   CLASSES/Headers.php   Download  
File: CLASSES/Headers.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Neural Net Library
Build, train, evaluate, and use neural networks
Author: By
Last change: Update of CLASSES/Headers.php
Date: 5 months ago
Size: 1,149 bytes
 

Contents

Class file image Download
<?PHP
// use NameSpaceArrayFileHandler\ArrayFileHandler;

include_once("ProcessManager.php");
include_once(
"NumpyLight.php");
include_once(
"RandomGenerator.php");
include_once(
"Activation_Relu.php");
include_once(
"Activation_Softmax.php");
include_once(
"Layer_Dense.php");
include_once(
"Optimizer_Adam.php");
include_once(
"Loss_CategoricalCrossentropy.php");
include_once(
"Activation_Softmax_Loss_CategoricalCrossentropy.php");
include_once(
"Optimizer_SGD.php");
include_once(
"Optimizer_Adagrad.php");
include_once(
"Optimizer_RMSprop.php");
include_once(
"LinePlotter.php");
include_once(
"Layer_Dropout.php");
include_once(
"Loss_BinaryCrossentropy.php");
include_once(
"Activation_Sigmoid.php");
include_once(
"Activation_Linear.php");
include_once(
"PlotChart.php");
include_once(
"Accuracy.php");
include_once(
"Layer_Input.php");
include_once(
"Model.php");
// include_once("ArrayFileHandler.php");
// include_once("Queue.php");
// include_once("TaskRegistry.php");
include_once("Threads.php");
include_once(
"ImageProcessor.php");
// ArrayFileHandler::initialize();
// use NameSpaceThreads\Threads;

// Threads::init(); // starts 10 stand by threads

?>