org.ojalgo.ann.NetworkBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ojalgo Show documentation
Show all versions of ojalgo Show documentation
oj! Algorithms - ojAlgo - is Open Source Java code that has to do with mathematics, linear algebra and optimisation.
/*
* Copyright 1997-2021 Optimatika
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.ojalgo.ann;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Supplier;
import org.ojalgo.ann.ArtificialNeuralNetwork.Activator;
import org.ojalgo.matrix.store.PhysicalStore;
/**
* An Artificial Neural Network (ANN) builder.
*
* @author apete
*/
public final class NetworkBuilder implements Supplier {
private final PhysicalStore.Factory myFactory;
private final List myLayers = new ArrayList<>();
private int myNextInputs = 0;
NetworkBuilder(final PhysicalStore.Factory factory, final int networkInputs) {
super();
myFactory = factory;
myNextInputs = networkInputs;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NetworkBuilder)) {
return false;
}
NetworkBuilder other = (NetworkBuilder) obj;
if (myNextInputs != other.myNextInputs) {
return false;
}
if (myFactory == null) {
if (other.myFactory != null) {
return false;
}
} else if (!myFactory.equals(other.myFactory)) {
return false;
}
if (!myLayers.equals(other.myLayers)) {
return false;
}
return true;
}
public ArtificialNeuralNetwork get() {
ArtificialNeuralNetwork network = new ArtificialNeuralNetwork(this);
network.randomise();
return network;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = (prime * result) + ((myFactory == null) ? 0 : myFactory.hashCode());
result = (prime * result) + myLayers.hashCode();
result = (prime * result) + myNextInputs;
return result;
}
public NetworkBuilder layer(final int outputs) {
return this.layer(outputs, ArtificialNeuralNetwork.Activator.SIGMOID);
}
public NetworkBuilder layer(final int outputs, final Activator activator) {
myLayers.add(new LayerTemplate(myNextInputs, outputs, activator));
myNextInputs = outputs;
return this;
}
PhysicalStore.Factory getFactory() {
return myFactory;
}
List getLayers() {
return myLayers;
}
}