org.dmg.pmml.neural_network.PMMLElements Maven / Gradle / Ivy
package org.dmg.pmml.neural_network;
import java.lang.reflect.Field;
public interface PMMLElements {
Field CONNECTION_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Connection.class, "extensions");
Field NEURALINPUT_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NeuralInput.class, "extensions");
Field NEURALINPUT_DERIVEDFIELD = org.jpmml.model.ReflectionUtil.getField(NeuralInput.class, "derivedField");
Field NEURALINPUTS_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NeuralInputs.class, "extensions");
Field NEURALINPUTS_NEURALINPUTS = org.jpmml.model.ReflectionUtil.getField(NeuralInputs.class, "neuralInputs");
Field NEURALLAYER_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NeuralLayer.class, "extensions");
Field NEURALLAYER_NEURONS = org.jpmml.model.ReflectionUtil.getField(NeuralLayer.class, "neurons");
Field NEURALNETWORK_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "extensions");
Field NEURALNETWORK_MININGSCHEMA = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "miningSchema");
Field NEURALNETWORK_OUTPUT = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "output");
Field NEURALNETWORK_MODELSTATS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "modelStats");
Field NEURALNETWORK_MODELEXPLANATION = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "modelExplanation");
Field NEURALNETWORK_TARGETS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "targets");
Field NEURALNETWORK_LOCALTRANSFORMATIONS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "localTransformations");
Field NEURALNETWORK_NEURALINPUTS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "neuralInputs");
Field NEURALNETWORK_NEURALLAYERS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "neuralLayers");
Field NEURALNETWORK_NEURALOUTPUTS = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "neuralOutputs");
Field NEURALNETWORK_MODELVERIFICATION = org.jpmml.model.ReflectionUtil.getField(NeuralNetwork.class, "modelVerification");
Field NEURALOUTPUT_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NeuralOutput.class, "extensions");
Field NEURALOUTPUT_DERIVEDFIELD = org.jpmml.model.ReflectionUtil.getField(NeuralOutput.class, "derivedField");
Field NEURALOUTPUTS_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(NeuralOutputs.class, "extensions");
Field NEURALOUTPUTS_NEURALOUTPUTS = org.jpmml.model.ReflectionUtil.getField(NeuralOutputs.class, "neuralOutputs");
Field NEURON_EXTENSIONS = org.jpmml.model.ReflectionUtil.getField(Neuron.class, "extensions");
Field NEURON_CONNECTIONS = org.jpmml.model.ReflectionUtil.getField(Neuron.class, "connections");
}