djl icon indicating copy to clipboard operation
djl copied to clipboard

An Engine-Agnostic Deep Learning Framework in Java

Results 322 djl issues
Sort by recently updated
recently updated
newest added
trafficstars

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...

![1716454959473](https://github.com/deepjavalibrary/djl/assets/93562667/6f5f3cb7-0f3e-4b94-a2b9-703476cc8c36)

enhancement

## 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...

bug

## 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, ![image](https://github.com/deepjavalibrary/djl/assets/158003379/ff34d367-8ebc-401f-90e4-5b52d7e1d11f) for example "1H", "H", "15min", we will get an exception: ``` Exception...

bug

//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 版本模型时,就没有问题,...

bug

## 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...

bug