![JAR search and dependency download from the Maven repository](/logo.png)
com.enterprisemath.math.nn.Network Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of em-math Show documentation
Show all versions of em-math Show documentation
Advanced mathematical algorithms.
The newest version!
package com.enterprisemath.math.nn;
import java.util.Map;
/**
* Definition of functionality for network.
*
* @author radek.hecl
*/
public interface Network {
/**
* Processes data through network and returns an output.
*
* @param input input data
* @return output data
*/
public Map process(Map input);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy