Skip to content

Commit 6196de8

Browse files
author
mykola
committed
Updated changelog and gitignore
1 parent d7b35e0 commit 6196de8

5 files changed

Lines changed: 6 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,3 +162,4 @@ cython_debug/
162162
.idea/
163163
/.vscode/settings.json
164164
/tests/testresources/pdfs/private/
165+
/.run/*

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [unreleased]
1+
## 0.2.4 - 01.10.2025
22

33
### 🚀 Features
44

scaledp/models/detectors/FaceDetector.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66

77
class FaceDetector(YoloOnnxDetector):
8+
"""Face detector using YOLO ONNX model."""
9+
810
defaultParams = MappingProxyType(
911
{
1012
"inputCol": "image",

scaledp/models/detectors/YoloOnnxDetector.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919

2020
class YoloOnnxDetector(BaseDetector, HasDevice, HasBatchSize):
21+
"""YOLO ONNX object detector."""
22+
2123
_model: ClassVar = {}
2224

2325
task = Param(

scaledp/models/detectors/craft/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
class Craftnet:
66
def __init__(self, onnx_path=None):
7-
onnx_path = "/home/mykola/PycharmProjects/scaledp/tests/model.quant.onnx"
87

98
session_options = onnxruntime.SessionOptions()
109
if onnx_path is None:

0 commit comments

Comments
 (0)