djl
djl copied to clipboard
An Engine-Agnostic Deep Learning Framework in Java
The test was failing on the machine installed cuda but no GPU ## Description ## Brief description of what this PR is about - If this change is a backward...
## Description ## Brief description of what this PR is about - If this change is a backward incompatible change, why must this change be made? - Interesting edge cases...

## Description When I try to use the MXNet zoo model `ai.djl.mxnet/glove/0.0.2/glove`, it throws the following error and I cannot use it for NLP word embedding: ``` Exception in thread...
## Description ## Brief description of what this PR is about - If this change is a backward incompatible change, why must this change be made? - Interesting edge cases...
Fixes: #3286 ## Description ## Brief description of what this PR is about - If this change is a backward incompatible change, why must this change be made? - Interesting...
If we specify the frequency as required by the Lag class or as the GluonTS documentation says,  for example "1H", "H", "15min", we will get an exception: ``` Exception...
I want to embed the block inside my network
//Application.CV.Image Criteria recognitionCriteria = Criteria.builder() .optEngine("PaddlePaddle") .setTypes(Image.class, String.class) .optModelPath("V:\AI\paddle\ocr\model\en_PP-OCRv4_rec_1203-02") .optTranslator(new PpWordRecognitionTranslator()) .build(); recognitionModel = recognitionCriteria.loadModel(); Image img = ImageFactory.getInstance().fromFile(Path.of(filePath)); Predictor recognizer = recognitionModel.newPredictor(); String text = recognizer.predict(img); 这样报错,使用paddleocr v3 版本模型时,就没有问题,...
## Description **Generic parameters are inconsistent problem, fail to deliver correctly.** **Details code is as follows:** > code in **ai.djl.repository.zoo.Criteria** ```java public class Criteria { ... private Map options; private...