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

com.enterprisemath.math.nn.Network Maven / Gradle / Ivy

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