public class TestActivationSoftMax extends TestCase {
@Test
public void testSoftMax() throws Throwable
{
ActivationSoftMax activation = new ActivationSoftMax();
Assert.assertTrue(activation.hasDerivative());
ActivationSoftMax clone = (ActivationSoftMax)activation.clone();
Assert.assertNotNull(clone);
double[] input = {1.0,1.0,1.0,1.0 };
activation.activationFunction(input,0,input.length);