I was trying out this code from one of the notebooks (vdet-dlr.py) in https://dev.ti.com/edgeai/ - see the snippet below:
import os
import cv2
import numpy as np
import ipywidgets as widgets
from scripts.utils import get_eval_configs
last_artifacts_id = selected_model_id.value if "selected_model_id" in locals() else None
prebuilt_configs, selected_model_id = get_eval_configs('classification','tflitert', num_quant_bits = 8, last_artifacts_id = last_artifacts_id)
display(selected_model_id)
On the J721e EVM board with the processor sdk 07_03_05, it gives me the error:
ModuleNotFoundError: No module named ‘scripts.utils’
How do I resolve this?
Thanks