Fzz123

Results 3 issues of Fzz123

您好,我在参看代码的时候发现,crf.py 中的 neg_log_likelihood_loss 函数里有: if self.average_batch: return (forward_score - gold_score) / batch_size return forward_score - gold_score 而在调用它的 sequence_labeling_model.py 中的 loss 函数里也有: if not self.use_crf: batch_size, max_len = feats.size(0), feats.size(1) lstm_feats...

### Describe the bug 可以跑通从官网下载的 ppyoloe 模型。 之后换成了从官网下载并转换格式后的 ppyoloe+ 模型,模型可以被正常加载,但在预测时就报出: 引发的异常:“System.AccessViolationException”(位于 Sdcb.PaddleDetection.dll 中) “System.AccessViolationException”类型的未经处理的异常在 Sdcb.PaddleDetection.dll 中发生 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。 请问这是表示库不支持新版的 ppyoloe+ 模型的意思吗?有什么方法可以使用这个模型呢? ### Steps to reproduce the bug sdcb.PaddleDetection 调用ppyoloe+模型时会报错 ### Expected...

### Feature request type sample request ### Is your feature request related to a problem? Please describe 程序中想先用RotationDetector矫正后再用PaddleOCR识别, RotationDetector的依赖项是: Sdcb.PaddleInference.runtime.win64.mkl Sdcb.RotationDetector OpenCvSharp4.runtime.win 之前看到说cpu和gpu的runtime推理包会冲突,请问这种情况下是不是只能使用cpu来跑了呢? ### Describe the solution you'd like 。...