deeplearning4j / deeplearning4j/deeplearning4j-examples
how to predict in CNNTextClassifier.java?
Open
question
- Dominant language
- Java
- Stars
- 2.5k
- Forks
- 1.8k
- PR merge metrics
- No merged PRs in 30d
Description
1.the model use ReshapePreProcessor
```
graphConfBuilder.addVertex(reshapedForConvName,
new PreprocessorVertex(new ReshapePreProcessor(
new int[] {batchSize * docLength, embeddingsDim},
new int[]{batchSize, 1, docLength, embeddingsDim})),
embeddedName);
```
2. when predict,there is only one sample ,there will be a error "Mis matched lengths",how to fix the bug?
Contributor guide
Assessment
This issue has not been assessed yet.