X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/mlbackend/php/phpml/src/Phpml
home
/
cbholdings
/
pasukulu
/
lib
/
mlbackend
/
php
/
phpml
/
src
/
Phpml
/
📁
..
📁
Association
📁
Classification
📁
Clustering
📁
CrossValidation
📁
Dataset
📁
DimensionReduction
📄
Estimator.php
(223 B)
📁
Exception
📁
FeatureExtraction
📁
FeatureSelection
📄
FeatureUnion.php
(1.99 KB)
📁
Helper
📄
IncrementalEstimator.php
(178 B)
📁
Math
📁
Metric
📄
ModelManager.php
(1.3 KB)
📁
NeuralNetwork
📄
Pipeline.php
(2.1 KB)
📁
Preprocessing
📁
Regression
📁
SupportVectorMachine
📁
Tokenization
📄
Transformer.php
(356 B)
Editing: Transformer.php
<?php declare(strict_types=1); namespace Phpml; interface Transformer { /** * most transformers don't require targets to train so null allow to use fit method without setting targets */ public function fit(array $samples, ?array $targets = null): void; public function transform(array &$samples, ?array &$targets = null): void; }
Upload File
Create Folder