Open fabrizioschiano opened 3 years ago
I forgot to mention that I tried to just remove the hard constraint on the scikit-learn
library.
therefore, i just removed the ==0.21.0
The problem with this is that I then have the following error when running
bash experiments/test.sh
Using tensorboardX
Traceback (most recent call last):
File "test.py", line 19, in <module>
from detector import Detector
File "/home/fabrizioschiano/repositories/CenterFusion/src/lib/detector.py", line 20, in <module>
from utils.tracker import Tracker
File "/home/fabrizioschiano/repositories/CenterFusion/src/lib/utils/tracker.py", line 2, in <module>
from sklearn.utils.linear_assignment_ import linear_assignment
ModuleNotFoundError: No module named 'sklearn.utils.linear_assignment_'
For now I mitigated the error thanks to this answer: https://stackoverflow.com/a/62391260/2761849
But I am not sure it is a good solution and that it won't give me problems in the future.
I am trying to install the packages required in the
requirements.txt
file but I get the following error:@mrnabati , is there a specific reason for using this version of
scikit-learn
?thanks!