All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.romualdrousseau.shuju.ml.nn.ActivationFunc Maven / Gradle / Ivy

Go to download

Collection of various algorithms implemented in Java covering domains such as mathematics and data science.

There is a newer version: 1.29.7
Show newest version
package com.github.romualdrousseau.shuju.ml.nn;

import com.github.romualdrousseau.shuju.math.Tensor2D;

public interface ActivationFunc {
    Tensor2D apply(Tensor2D x);

    Tensor2D derivate(Tensor2D y);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy