Skip to content

Commit 3dff421

Browse files
authored
AC: fix for fp16 precision mapping (#2970)
* AC: fix for fp16 precision mapping * Update tools/accuracy_checker/openvino/tools/accuracy_checker/launcher/input_feeder.py
1 parent 63c0aee commit 3dff421

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tools/accuracy_checker/openvino/tools/accuracy_checker/launcher/input_feeder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
'i32': np.int32,
6969
'i64': np.int64,
7070
'fp16': np.float16,
71+
'f16': np.float16,
7172
'i16': np.int16,
7273
'u16': np.uint16,
7374
'i8': np.int8,

tools/accuracy_checker/openvino/tools/accuracy_checker/launcher/openvino_launcher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
'i32': np.int32,
5050
'i64': np.int64,
5151
'fp16': np.float16,
52+
'f16': np.float16,
5253
'i16': np.int16,
5354
'u16': np.uint16,
5455
'i8': np.int8,

0 commit comments

Comments
 (0)