def get_prediction_evaluation_yolov3_variant(model_path, validation_dataset,
                                             providers):
    width = 608
    height = 608
    evaluator = YoloV3VariantEvaluator(model_path,
                                       None,
                                       width=width,
                                       height=height,
                                       providers=providers)

    total_data_size = len(os.listdir(validation_dataset))
    start_index = 0
    stride = 1000
    batch_size = 1
    for i in range(0, total_data_size, stride):
        data_reader = YoloV3VariantDataReader(validation_dataset,
                                              width=width,
                                              height=height,
                                              start_index=start_index,
                                              end_index=start_index + stride,
                                              stride=stride,
                                              batch_size=batch_size,
                                              model_path=model_path,
                                              is_evaluation=True)

        evaluator.set_data_reader(data_reader)
        evaluator.predict()
        start_index += stride

    result = evaluator.get_result()
    annotations = './annotations/instances_val2017.json'
    evaluator.evaluate(result, annotations)
def get_calibration_table_yolov3_variant(model_path, augmented_model_path,
                                         calibration_dataset):

    calibrator = create_calibrator(model_path, [],
                                   augmented_model_path=augmented_model_path,
                                   calibrate_method=CalibrationMethod.Entropy)
    calibrator.set_execution_providers(["CUDAExecutionProvider"])

    # DataReader can handle dataset with batch or serial processing depends on its implementation
    # Following examples show two different ways to generate calibration table
    '''
    1. Use serial processing
    
    We can use only one data reader to do serial processing, however,
    some machines don't have sufficient memory to hold all dataset images and all intermediate output.
    So let multiple data readers to handle different stride of dataset one by one.
    DataReader will use serial processing when batch_size is 1.
    '''

    width = 608
    height = 608

    total_data_size = len(os.listdir(calibration_dataset))
    start_index = 0
    stride = 20
    batch_size = 1
    for i in range(0, total_data_size, stride):
        data_reader = YoloV3VariantDataReader(calibration_dataset,
                                              width=width,
                                              height=height,
                                              start_index=start_index,
                                              end_index=start_index + stride,
                                              stride=stride,
                                              batch_size=batch_size,
                                              model_path=augmented_model_path)
        calibrator.collect_data(data_reader)
        start_index += stride
    '''
    2. Use batch processing (much faster)
    
    Batch processing requires less memory for intermediate output, therefore let only one data reader to handle dataset in batch. 
    However, if encountering OOM, we can make multiple data reader to do the job just like serial processing does. 
    DataReader will use batch processing when batch_size > 1.
    '''

    # batch_size = 20
    # stride=1000
    # data_reader = YoloV3VariantDataReader(calibration_dataset,
    # width=width,
    # height=height,
    # stride=stride,
    # batch_size=batch_size,
    # model_path=augmented_model_path)
    # calibrator.collect_data(data_reader)

    write_calibration_table(calibrator.compute_range())
    print('calibration table generated and saved.')
Пример #3
0
def get_calibration_table_yolov3_variant(model_path, augmented_model_path,
                                         calibration_dataset):

    calibrator = get_calibrator(model_path,
                                None,
                                augmented_model_path=augmented_model_path)

    # DataReader can handle dataset with batch or serial processing depends on its implementation
    # Following examples show two different ways to generate calibration table
    '''
    1. Use serial processing
    
    We can use only one DataReader to do serial processing, however,
    some machines don't have sufficient memory to hold all dataset images and all intermediate output.
    So let multiple DataReader do handle different stride of dataset one by one.
    DataReader will use serial processing when batch_size is 1.
    '''

    total_data_size = len(os.listdir(calibration_dataset))
    start_index = 0
    stride = 25
    for i in range(0, total_data_size, stride):
        data_reader = YoloV3VariantDataReader(calibration_dataset,
                                              width=608,
                                              height=608,
                                              start_index=start_index,
                                              end_index=start_index + stride,
                                              stride=stride,
                                              batch_size=1,
                                              model_path=augmented_model_path)
        calibrator.set_data_reader(data_reader)
        generate_calibration_table(calibrator, model_path,
                                   augmented_model_path, False, data_reader)
        start_index += stride
    '''
    2. Use batch processing (much faster)
    
    Batch processing requires less memory for intermediate output, therefore let only one DataReader to handle dataset in batch. 
    However, if encountering OOM, we can make multiple DataReader to do the job just like serial processing does. 
    DataReader will use batch processing when batch_size > 1.
    '''

    # data_reader = YoloV3VariantDataReader(calibration_dataset, width=608, height=608, stride=1000, batch_size=20, model_path=augmented_model_path)
    # calibrator.set_data_reader(data_reader)
    # generate_calibration_table(calibrator, model_path, augmented_model_path, True, data_reader)

    write_calibration_table(calibrator.get_calibration_cache())
    print('calibration table generated and saved.')
Пример #4
0
def get_prediction_evaluation_yolov3_variant(model_path, validation_dataset,
                                             providers):
    data_reader = YoloV3VariantDataReader(validation_dataset,
                                          width=608,
                                          height=608,
                                          stride=1000,
                                          batch_size=1,
                                          model_path=model_path,
                                          is_evaluation=True)
    evaluator = YoloV3VariantEvaluator(model_path,
                                       data_reader,
                                       width=608,
                                       height=608,
                                       providers=providers)

    evaluator.predict()
    result = evaluator.get_result()

    annotations = './annotations/instances_val2017.json'
    print(result)
    evaluator.evaluate(result, annotations)