__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace Phpml\NeuralNetwork\Node;
use Phpml\NeuralNetwork\Node;
class Input implements Node
{
/**
* @var float
*/
private $input;
public function __construct(float $input = 0.0)
{
$this->input = $input;
}
public function getOutput(): float
{
return $this->input;
}
public function setInput(float $input): void
{
$this->input = $input;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Neuron | Folder | 0777 |
|
|
| Bias.php | File | 203 B | 0777 |
|
| Input.php | File | 457 B | 0777 |
|
| Neuron.php | File | 1.5 KB | 0777 |
|