SkalskiP
a99015ac2d
more Qwen2.5-VL tests
2025-11-15 22:51:22 +01:00
pre-commit-ci[bot]
e68c908077
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-15 20:29:38 +00:00
SkalskiP
2edcbdc487
initial commit with `from_qwen_3_vl` added, `from_qwen_2_5_vl` improved
2025-11-15 21:27:55 +01:00
pre-commit-ci[bot]
e82b5b9d74
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-14 16:58:25 +00:00
SkalskiP
8d464aa1b5
improve `InferenceSlicer` implementation lowering the count of generated boxes
2025-11-14 16:42:10 +01:00
SkalskiP
ce28ab7fc7
fix uti tests for `InferenceSlicer._generate_offset`
2025-11-14 15:49:22 +01:00
Piotr Skalski
1d73468dc5
Merge pull request #2012 from jackiehimel/fix/bugs-1959-2000
...
fix: correct numpy indexing in denormalize_boxes and add ultralytics validation
2025-11-14 13:25:26 +01:00
SkalskiP
dfd2a60855
update `denormalize_boxes` docstring and examples; update `from_google_gemini_2_0`, `from_google_gemini_2_5` and `from_moondream` to use latest version of `denormalize_boxes`
2025-11-14 13:12:39 +01:00
SkalskiP
f563c5a634
update `denormalize_boxes` docstring and examples
2025-11-14 12:53:58 +01:00
SkalskiP
35272b40d3
remove ultralytics tests
2025-11-14 12:38:55 +01:00
Piotr Skalski
d109fba9d8
Merge pull request #2001 from AnonymDevOSS/feat/speed-up-box-iou-batch
...
feat: speed up box iou batch using 2d in-place ops instead of 3d
2025-11-14 12:26:25 +01:00
pre-commit-ci[bot]
1e2dc8f88b
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-14 10:58:01 +00:00
SkalskiP
f716b7fa3b
improve docstrings, examples, variable naming conventions and unit tests
2025-11-14 11:57:31 +01:00
pre-commit-ci[bot]
61cca76acc
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-13 02:10:25 +00:00
jackiehimel
9ad850af46
fix: correct numpy indexing in denormalize_boxes and add ultralytics validation
...
- Fix denormalize_boxes numpy indexing bug that caused IndexError with 3+ boxes
- Add validation for missing boxes attribute in from_ultralytics
- Add comprehensive test coverage (11 new tests)
Fixes #1959
Fixes #2000
2025-11-12 20:58:25 -05:00
AnonymDevOSS
bb87ab0a6e
fixed autoformat errors
2025-11-06 23:00:33 +01:00
AnonymDevOSS
ceefe0bab2
feat/ speed up box iou - replaced original function; added tests
2025-11-06 22:52:25 +01:00
SkalskiP
65f6e418a1
making flake8 happy
2025-11-05 20:34:22 +01:00
pre-commit-ci[bot]
1fef946a19
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-05 19:29:22 +00:00
SkalskiP
4c3d51f186
making flake8 happy
2025-11-05 20:28:55 +01:00
pre-commit-ci[bot]
9340cb962b
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-05 19:23:02 +00:00
SkalskiP
6578b4ea52
initial version of `filter_segments_by_distance`
2025-11-05 20:18:10 +01:00
pre-commit-ci[bot]
3e7e4caf3f
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-11-05 12:03:55 +00:00
SkalskiP
32dca290ef
`xyxy_to_mask` implementation + tests
2025-11-05 13:00:11 +01:00
AnonymDevOSS
35ff87b08d
feat: speed up box iou batch using 2d in-place ops instead of 3d
...
without creating intermediary (N, M, 2) arrays.
2025-10-28 13:51:28 +01:00
Piotr Skalski
b381fa198f
Merge pull request #1884 from roboflow/feat/from_deepseek_vl_2_support
...
feat: 🚀 from_vlm deepseek vl 2 support
2025-07-25 16:57:44 +02:00
SkalskiP
58bdce5707
tests fixed
2025-07-24 15:13:46 +02:00
pre-commit-ci[bot]
8262b6e64b
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-07-24 13:06:48 +00:00
SkalskiP
72fe0bf47f
initial version of `edit_distance` and `fuzzy_match_index` that will allow to match faulty class name generated by VLMs with exact class names
2025-07-24 15:05:19 +02:00
soumik12345
137078602b
add: tests
2025-07-24 15:17:05 +05:30
pre-commit-ci[bot]
592a649b50
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-07-15 17:26:01 +00:00
SkalskiP
fa5fcbb264
utils split across multiple files; internal and external imports working; utils tests split across multiple files; tests working locally
2025-07-15 19:23:55 +02:00
Onuralp SEZER
212e69b5a4
refactor: 🧪 type hints to use the new union syntax for optional types
...
- Updated type hints across multiple files to replace `Optional[X]` with `X | None` for better readability and consistency.
- Added `from __future__ import annotations` to files to enable postponed evaluation of type annotations.
- Adjusted function signatures and variable types in various modules including `polygon_zone.py`, `smoother.py`, `transformers.py`, `vlm.py`, and others.
- Ensured compatibility with Python 3.10+ type hinting features.
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
2025-07-15 16:36:01 +03:00
Onuralp SEZER
b6cd9dd3f3
chore: 🧹 clean up unused imports and optimize code structure and convert more List to list
2025-07-15 15:30:08 +03:00
Onuralp SEZER
3dd1ce4e1c
Merge branch 'develop' into feat/upgrade-python-3-9
2025-07-15 15:27:05 +03:00
Piotr Skalski
71e7c3e17c
Merge pull request #1774 from SunHao-AI/develop
...
Support for IOS Matching Metric. Introduced the `mask_non_max_merge` function for handling non-maximum merging of masks
2025-07-15 14:11:40 +02:00
pre-commit-ci[bot]
9a38ebd15e
fix(pre_commit): 🎨 auto format pre-commit hooks
2025-07-15 10:14:09 +00:00
soumik12345
4977fd64b1
add: test_mask_non_max_merge
2025-07-15 15:43:44 +05:30
soumik12345
007d8f5dad
chore: make enum comparisons
2025-07-15 15:34:24 +05:30
soumik12345
b3024e780d
chore: make pre-commit happy
2025-07-15 15:01:57 +05:30
soumik12345
ebf4b930b7
add: test for mask_non_max_merge
2025-07-15 15:01:36 +05:30
Onuralp SEZER
edfe0a944a
refactor: 🛠️ update type hints to use built-in types in VLM and validation functions
2025-07-15 00:16:40 +03:00
Onuralp SEZER
25edd9be21
Merge branch 'develop' into feat/upgrade-python-3-9
2025-07-15 00:07:17 +03:00
Onuralp SEZER
00fab37e58
feat: 🚀 dropping python 3.8 support and upgrade all codes to python3.9 syntax style as min
...
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
2025-07-14 20:12:11 +03:00
Onuralp SEZER
d29fb8ad05
test: 🧪 add test case for Google Gemini 2.5 with sample JSON output for 2 masks
2025-07-14 18:48:17 +03:00
Onuralp SEZER
c2abb24c26
test: 🧪 add test case for gemini 2.5 segmentation
2025-07-14 18:38:32 +03:00
Onuralp SEZER
6c4a2a8d44
test: 🧪 add gemini_2_5 test and fix failed cases in gemini_2_5 function for better to handle different cases
...
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
2025-07-14 16:50:41 +03:00
Onuralp SEZER
4ed667da88
fix: 🐞 rename from_google_gemini to from_google_gemini_2_0 keep names consistent
2025-07-14 14:24:37 +03:00
Onuralp SEZER
2bf448f285
refactor: 🧹 remove test file for from_florence_2 function and merge into main test_vlm file
...
Signed-off-by: Onuralp SEZER <thunderbirdtr@gmail.com>
2025-07-14 13:09:58 +03:00
Onuralp SEZER
3218da8cbd
test: 🧪 re-add parameterized tests for from_moondream function
2025-07-11 21:39:45 +03:00