Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a4985a2
init: Add initial project structure and files
harshaljanjani Jul 9, 2025
da6196b
test: Enable test cases (will fail until HGNetV2 dep added)
harshaljanjani Jul 9, 2025
55f9c13
refactor: Make clean and consistent API design choices
harshaljanjani Jul 10, 2025
958df18
refactor: Remove the task model from the scope of this PR
harshaljanjani Jul 11, 2025
b9399ff
Merge branch 'keras-team:master' into d-fine
harshaljanjani Jul 11, 2025
1d28041
refactor: Enhance test suite robustness and standardize weight init t…
harshaljanjani Jul 12, 2025
a488b8b
nit: Remove the problematic channel_axis from the deserialization args
harshaljanjani Jul 12, 2025
4d32f1a
nit: Replace hyphen with underscore in preset name
harshaljanjani Jul 13, 2025
02541a7
refactor: Implement code cleanup based on review feedback
harshaljanjani Jul 16, 2025
70341f7
refactor: Address code reviews
harshaljanjani Jul 25, 2025
19356aa
nit: Remove unnecessary Keras serialization decorator
harshaljanjani Jul 26, 2025
b4bc7f9
refactor: Resolve review comments
harshaljanjani Jul 30, 2025
8f0c213
update: Enable HGNetV2 and D-FINE tests!
harshaljanjani Jul 31, 2025
6a8a48b
test: Enable `run_data_format_check`
harshaljanjani Aug 6, 2025
8050bc4
feat: Add DFineObjectDetector (TODO: Make loss batch-aware)
harshaljanjani Aug 9, 2025
5fd4c75
skipif: Bbox utils are not supported before Keras < 3.8.0
harshaljanjani Aug 9, 2025
fb620f2
test: Minor implementation review
harshaljanjani Aug 10, 2025
8d2046f
Complete TODO: Make loss fully batch-aware
harshaljanjani Aug 10, 2025
faf08bf
finals: Add adaptation explanations; denoising query range
harshaljanjani Aug 11, 2025
6056326
fix: GPU tests + memory optimization
harshaljanjani Aug 12, 2025
6f11346
change: Reduce memory usage with minimal test configuration
harshaljanjani Aug 20, 2025
a34c32a
Merge branch 'keras-team:master' into d-fine
harshaljanjani Aug 20, 2025
0324302
reviews: Incorporate comments
harshaljanjani Aug 22, 2025
1231d08
nits: Move loss to separate file + address review feedback (Gemini, S…
harshaljanjani Aug 26, 2025
9e1f692
Merge branch 'keras-team:master' into d-fine
harshaljanjani Aug 26, 2025
cf911ae
nit: Skip HF preset loading test on TensorFlow GPU CI due to an unkno…
harshaljanjani Aug 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions keras_hub/api/layers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@
from keras_hub.src.models.cspnet.cspnet_image_converter import (
CSPNetImageConverter as CSPNetImageConverter,
)
from keras_hub.src.models.d_fine.d_fine_image_converter import (
DFineImageConverter as DFineImageConverter,
)
from keras_hub.src.models.deeplab_v3.deeplab_v3_image_converter import (
DeepLabV3ImageConverter as DeepLabV3ImageConverter,
)
Expand Down
9 changes: 9 additions & 0 deletions keras_hub/api/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,15 @@
from keras_hub.src.models.cspnet.cspnet_image_classifier_preprocessor import (
CSPNetImageClassifierPreprocessor as CSPNetImageClassifierPreprocessor,
)
from keras_hub.src.models.d_fine.d_fine_backbone import (
DFineBackbone as DFineBackbone,
)
from keras_hub.src.models.d_fine.d_fine_object_detector import (
DFineObjectDetector as DFineObjectDetector,
)
from keras_hub.src.models.d_fine.d_fine_object_detector_preprocessor import (
DFineObjectDetectorPreprocessor as DFineObjectDetectorPreprocessor,
)
from keras_hub.src.models.deberta_v3.deberta_v3_backbone import (
DebertaV3Backbone as DebertaV3Backbone,
)
Expand Down
Empty file.
Loading
Loading