2016-11-08 5 views
0

У меня есть пользовательский 7 (высотный) и 24 (ширина) матричный вход, который будет использоваться для обучения. Результатом являются метки с Age (Young, Mature, Old). Я хотел бы пойти с Deeplearning4J Сверторные нейронные сети.DeepLearning4J IllegalArgumentException для CNN с пользовательской матрицей

После создания очень простой сверточной нейронной сети самый первый элемент тренировки дает следующую ошибку, и я не знаю, что это такое.

Exception in thread "main" java.lang.IllegalArgumentException: Invalid size index 2 wher it's >= rank 2 
at org.nd4j.linalg.api.ndarray.BaseNDArray.size(BaseNDArray.java:4066) 
at org.deeplearning4j.nn.layers.convolution.ConvolutionLayer.preOutput(ConvolutionLayer.java:192) 
at org.deeplearning4j.nn.layers.convolution.ConvolutionLayer.activate(ConvolutionLayer.java:247) 
at org.deeplearning4j.nn.graph.vertex.impl.LayerVertex.doForward(LayerVertex.java:88) 
at org.deeplearning4j.nn.graph.ComputationGraph.feedForward(ComputationGraph.java:983) 
at org.deeplearning4j.nn.graph.ComputationGraph.computeGradientAndScore(ComputationGraph.java:889) 

Мой DL4J код

//Model Config here 
MultiLayerConfiguration.Builder builder = new NeuralNetConfiguration.Builder() 
    .seed(seed) 
    .iterations(iterations) 
    .regularization(true).l2(0.0005) 
    .learningRate(0.01)//.biasLearningRate(0.02) 
    //.learningRateDecayPolicy(LearningRatePolicy.Inverse).lrPolicyDecayRate(0.001).lrPolicyPower(0.75) 
    .weightInit(WeightInit.XAVIER) 
    .optimizationAlgo(OptimizationAlgorithm.STOCHASTIC_GRADIENT_DESCENT) 
    .updater(Updater.NESTEROVS).momentum(0.9) 
    .list() 
    .layer(0, new ConvolutionLayer.Builder(4, 1) 
     //nIn and nOut specify depth. nIn here is the nChannels and nOut is the number of filters to be applied 
      .name("hzvt1") 
     .nIn(nChannels) 
     .stride(1, 1) 
     .nOut(26) 
     .activation("relu")//.activation("identity") 
     .build()) 
    .layer(1, new OutputLayer.Builder(LossFunctions.LossFunction.NEGATIVELOGLIKELIHOOD) 
     .nOut(outputNum) 
     .activation("softmax") 
     .build()) 
    .setInputType(InputType.convolutional(nChannels,height,width)) 
    .backprop(true).pretrain(false); 

//Model build here    
model.fit(wmTrain);MultiLayerConfiguration conf = builder.build(); 
model.fit(wmTrain);MultiLayerNetwork model = new MultiLayerNetwork(conf); 
model.init();    

//Training data creation here 
INDArray weekMatrix = Nd4j.ones(DLAgeGender.nChannels,DLAgeGender.height*DLAgeGender.width);  
double[] vector = new double[] { 0.0, 1.0, 0.0 }; 
INDArray intLabels = Nd4j.create(vector); 
DataSet ds=new DataSet(weekMatrix,intLabels); 
//Train the first item 
model.fit(wmTrain); 

Я использую DL4J версии 0.6, Java версии 1.8, Maven 3.3+

Я подозреваю, что ошибка в библиотеке.

ответ

0

С помощью поддержки gitter. Я узнал, что модель и вход не совпадают. Правильный рабочий код выглядит следующим образом.

Надеюсь, что эти сообщения об ошибках DLXJ более понятны в следующих выпусках.

log.info("Build model...."); 
System.out.println("Building model..."); 
MultiLayerConfiguration.Builder builder = new NeuralNetConfiguration.Builder() 
     .seed(seed) 
     .iterations(iterations) 
     .regularization(true).l2(0.0005) 
     .learningRate(0.01)//.biasLearningRate(0.02) 
     //.learningRateDecayPolicy(LearningRatePolicy.Inverse).lrPolicyDecayRate(0.001).lrPolicyPower(0.75) 
     .weightInit(WeightInit.XAVIER) 
     .optimizationAlgo(OptimizationAlgorithm.STOCHASTIC_GRADIENT_DESCENT) 
     .updater(Updater.NESTEROVS).momentum(0.9) 
     .list() 
     .layer(0, new ConvolutionLayer.Builder(4, 1) 
      //nIn and nOut specify depth. nIn here is the nChannels and nOut is the number of filters to be applied 
      .name("hzvt1") 
      .nIn(nChannels) 
      .stride(1, 1) 
      .nOut(26) 
      .activation("relu")//.activation("identity") 
      .build()) 
     .layer(1, new OutputLayer.Builder(LossFunctions.LossFunction.NEGATIVELOGLIKELIHOOD) 
      .nOut(classes) 
      .activation("softmax") 
      .build()) 
     .setInputType(InputType.convolutional(height,width,nChannels)) 
     .backprop(true).pretrain(false); 

//Model build here    
model.fit(wmTrain);MultiLayerConfiguration conf = builder.build(); 
model.fit(wmTrain);MultiLayerNetwork model = new MultiLayerNetwork(conf); 
model.init();    

//Training data creation here 
    INDArray weekMatrix = Nd4j.ones(new int[]{1,DLAgeGender.nChannels,DLAgeGender.height,DLAgeGender.width}); 
    INDArray intLabels; 
    double[] vector = new double[] { 0.0, 1.0, }; 
    intLabels = Nd4j.create(vector); 
DataSet ds=new DataSet(weekMatrix,intLabels); 

log.info("Train model...."); 
model.setListeners(new ScoreIterationListener(1)); 
model.fit(wmTrain); 
System.out.println("Data train OK.");