using System; namespace NeuralNetwork { public static class Activations { public static float Tanh(float value) { return (float)Math.Tanh(value); } } }