compile_options = {
'tidl_tools_path' : os.environ['TIDL_TOOLS_PATH'],
'artifacts_folder' : output_dir,
'tensor_bits' : 8,
'accuracy_level' : 1,
'advanced_options:calibration_frames' : len(calib_images),
'advanced_options:calibration_iterations' : 3,
'debug_level' : 3,
'deny_list' : "1, 25", #For details of TFLite builtin ops please refer: github.com/.../builtin_ops.h
}
tidl_delegate = [tflite.load_delegate(os.path.join(os.environ['TIDL_TOOLS_PATH'], 'tidl_model_import_tflite.so'), compile_options)]
interpreter = tflite.Interpreter(model_path=tflite_model_path, experimental_delegates=tidl_delegate)
interpreter.allocate_tensors()
I used the custom-model-tfl.ipynb file to modify and compile our own model, but it did not generate allowedNode.txt after running. Could you please help me find out what the possible reason is
Thank you!