HEX
Server: LiteSpeed
System: Linux server.zepintelhosting.com 4.18.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
User: enamadmin (1026)
PHP: 8.2.30
Disabled: exec,system,passthru,shell_exec,proc_open,popen,apache_child_terminate
Upload Files
File: /home/enamadmin/public_html/aaelearningb/lib/mlbackend/php/phpml/src/Phpml/Metric/Regression.php
<?php

declare(strict_types=1);

namespace Phpml\Metric;

use Phpml\Exception\InvalidArgumentException;
use Phpml\Math\Statistic\Correlation;
use Phpml\Math\Statistic\Mean;

final class Regression
{
    public static function meanSquaredError(array $targets, array $predictions): float
    {
        self::assertCountEquals($targets, $predictions);

        $errors = [];
        foreach ($targets as $index => $target) {
            $errors[] = (($target - $predictions[$index]) ** 2);
        }

        return Mean::arithmetic($errors);
    }

    public static function meanSquaredLogarithmicError(array $targets, array $predictions): float
    {
        self::assertCountEquals($targets, $predictions);

        $errors = [];
        foreach ($targets as $index => $target) {
            $errors[] = log((1 + $target) / (1 + $predictions[$index])) ** 2;
        }

        return Mean::arithmetic($errors);
    }

    public static function meanAbsoluteError(array $targets, array $predictions): float
    {
        self::assertCountEquals($targets, $predictions);

        $errors = [];
        foreach ($targets as $index => $target) {
            $errors[] = abs($target - $predictions[$index]);
        }

        return Mean::arithmetic($errors);
    }

    public static function medianAbsoluteError(array $targets, array $predictions): float
    {
        self::assertCountEquals($targets, $predictions);

        $errors = [];
        foreach ($targets as $index => $target) {
            $errors[] = abs($target - $predictions[$index]);
        }

        return (float) Mean::median($errors);
    }

    public static function r2Score(array $targets, array $predictions): float
    {
        self::assertCountEquals($targets, $predictions);

        return Correlation::pearson($targets, $predictions) ** 2;
    }

    public static function maxError(array $targets, array $predictions): float
    {
        self::assertCountEquals($targets, $predictions);

        $errors = [];
        foreach ($targets as $index => $target) {
            $errors[] = abs($target - $predictions[$index]);
        }

        return (float) max($errors);
    }

    private static function assertCountEquals(array &$targets, array &$predictions): void
    {
        if (count($targets) !== count($predictions)) {
            throw new InvalidArgumentException('Targets count must be equal with predictions count');
        }
    }
}