You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File ".\Evaluation.py", line 32, in
evaluate()
File ".\Evaluation.py", line 10, in evaluate
dataProvider = DataProvider()
TypeError: 'module' object is not callable
I run python Evaluation.py and then got this error. Can someone help?
The text was updated successfully, but these errors were encountered:
Just changed the below lines
dataProvider = DataProvider()
images = dataProvider.get_testset(True)
to single line as,
images = DataProvider.get_testset(True)
Traceback (most recent call last):
File ".\Evaluation.py", line 32, in
evaluate()
File ".\Evaluation.py", line 10, in evaluate
dataProvider = DataProvider()
TypeError: 'module' object is not callable
I run python Evaluation.py and then got this error. Can someone help?
The text was updated successfully, but these errors were encountered: