Skip to content

Commit

Permalink
Fix maskrcnn swin nncf acc drop (#3900)
Browse files Browse the repository at this point in the history
update maskrcnn swimt model type to transformer
  • Loading branch information
eugene123tw authored Aug 27, 2024
1 parent 2c6b4de commit 0dc7a29
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions src/otx/algo/instance_segmentation/maskrcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,15 +675,4 @@ def _build_model(self, num_classes: int) -> TwoStageDetector:
@property
def _optimization_config(self) -> dict[str, Any]:
"""PTQ config for MaskRCNN-SwinT."""
return {
"ignored_scope": {
"types": [
"Add",
"MVN",
"Divide",
"Multiply",
],
"validate": False,
},
"preset": "mixed",
}
return {"model_type": "transformer"}

0 comments on commit 0dc7a29

Please sign in to comment.