while running evaluation.py for evaluating model there is an error, ModuleNotFoundError: No module named 'tools.compute_metrics_norm'
Fixed :
Changed tools.compute_metrics_norm to tools.compute_metrics in statement: from tools.compute_metrics_norm import compute_metrics_norm because for computing metrics the function is named as compute_metrics which is present in tools.compute_metrics .
Issue :
while running evaluation.py for evaluating model there is an error, ModuleNotFoundError: No module named 'tools.compute_metrics_norm'
Fixed :
Changed tools.compute_metrics_norm to tools.compute_metrics in statement:
from tools.compute_metrics_norm import compute_metrics_norm
because for computing metrics the function is named as compute_metrics which is present in tools.compute_metrics .