{{ info.key | modelList }} {{ info.value }}



RUN Status Model Accuracy Throughput [sample/sec] Model size [MB] Model generation time [sec] Config Console output Code template
FP32 INT8 FP32 INT8 Accuracy diff FP32 INT8 Perf speedup FP32 INT8 Ratio
{{ model['model_path'] ? getFileName(model['model_path']) : null }} {{ model['model_output_path'] ? getFileName(model['model_output_path']) : null }} {{ model['acc_fp32'] ? (model['acc_fp32'] * 100 | number: '1.2-2') + '%' : null }} {{ model['acc_int8'] ? (model['acc_int8'] * 100 | number: '1.2-2') + '%' : null }} {{ model['acc_fp32'] && model['acc_int8'] ? (((model['acc_int8'] - model['acc_fp32']) * 100 / model['acc_fp32']) | number: '1.2-2') + '%' : null }} {{ model['perf_throughput_fp32'] ? (model['perf_throughput_fp32'] | number: '1.0-0') : null }} {{ model['perf_throughput_int8'] ? (model['perf_throughput_int8'] | number: '1.0-0') : null }} {{ model['perf_throughput_fp32'] && model['perf_throughput_int8'] ? ((model['perf_throughput_int8'] / model['perf_throughput_fp32']) | number: '1.1-1') + 'x' : null }} {{ model['size_fp32'] }} {{ model['size_int8'] }} {{ model['size_fp32'] && model['size_int8'] ? ((model['size_fp32'] / model['size_int8']) | number: '1.1-1') + 'x' : null }} {{ model['tuning_time'] }}