beta = $beta; } /** * @param float|int $value * * @return float */ public function compute($value): float { return tanh($this->beta * $value); } }