}
public void process(String methodName, String methodArchitecture,String trainerName, String trainerArgs,int outputNeurons) {
// first, create the machine learning method
MLMethodFactory methodFactory = new MLMethodFactory();
MLMethod method = methodFactory.create(methodName, methodArchitecture, 2, outputNeurons);
// second, create the data set
MLDataSet dataSet = new BasicMLDataSet(XOR_INPUT, XOR_IDEAL);
// third, create the trainer