ultralytics 8.2.9 OpenVINO INT8 fixes and tests (#10423)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Burhan 2024-05-05 09:11:17 -04:00 committed by GitHub
parent 299797ff9e
commit 2583f842b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 250 additions and 206 deletions

View file

@ -572,7 +572,7 @@ class Model(nn.Module):
def export(
self,
**kwargs,
):
) -> str:
"""
Exports the model to a different format suitable for deployment.
@ -588,7 +588,7 @@ class Model(nn.Module):
model's overrides and method defaults.
Returns:
(object): The exported model in the specified format, or an object related to the export process.
(str): The exported model filename in the specified format, or an object related to the export process.
Raises:
AssertionError: If the model is not a PyTorch model.