Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release branch] Disable NNCF optimization for FP16 models #1319

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ framework: OTEDetection v2.9.1
entrypoints:
base: mpa_tasks.apis.detection.DetectionTrainTask
openvino: detection_tasks.apis.detection.OpenVINODetectionTask
nncf: mpa_tasks.apis.detection.DetectionNNCFTask
base_model_path: ../../../../mmdetection/configs/custom-counting-instance-seg/efficientnetb2b_maskrcnn/template_experimental.yaml

# Capabilities.
Expand All @@ -41,7 +40,7 @@ hyper_parameters:
default_value: 2
nncf_optimization:
enable_quantization:
default_value: true
default_value: false
enable_pruning:
default_value: false
pruning_supported:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ framework: OTESegmentation v0.14.0
entrypoints:
base: mpa_tasks.apis.segmentation.SegmentationTrainTask
openvino: segmentation_tasks.apis.segmentation.OpenVINOSegmentationTask
nncf: mpa_tasks.apis.segmentation.SegmentationNNCFTask
base_model_path: ../../../../mmsegmentation/configs/custom-sematic-segmentation/ocr-lite-hrnet-x-mod3/template_experimental.yaml

# Capabilities.
Expand All @@ -40,7 +39,7 @@ hyper_parameters:
default_value: 300
nncf_optimization:
enable_quantization:
default_value: true
default_value: false
enable_pruning:
default_value: false
pruning_supported:
Expand Down