Create a new weka Instance
I'm new in Weka, I'm triying to create new instances to be labeled with a previous trained MultilayerPerceptron , I did't know very much about how to create an instance so I got the first instance from my training data and then modified it by changing the atributes values: //Opening the model public boolean abrirModelo(String ruta) { try { clasificador = (MultilayerPerceptron) weka.core.SerializationHelper.read(ruta); return true; } catch (IOException e) { System.out.println("Fallo la lectura del archivo"); return false; } catch (ClassNotFoundException a) { System.out.println("Fallo el casting