-
Notifications
You must be signed in to change notification settings - Fork 4
Description
When I was setting up the virtual environment for the cifar10_experiment , the numpy==2.0.2 was installed in the command “pip install torch==1.13.1+cu116 torchvision==0.14.1+cu116 torchaudio==0.13.1 --extra-index-url https://download.pytorch.org/whl/cu116” ,but when I run "python freematch.py --c config/freematch_cifar10_40_1.yaml" , the file cannot function properly and the error message it throws says the following:
"""
A module that was compiled using NumPy l.x cannot be run inNumPy 2.0.2 as it may crash. To support both l.x and 2.xversions of NumPy, modules
must be compiled with NumPy 2.0.Some module may need to rebuild instead e.g. with 'pybindll>=2.12'
If you are a user of the module, the easiest solution will be todowngrade to 'numpy<2'or try to upgrade the affected module.We expect that some modules will need time to support NumPy 2.
"""
The problem was not resolved until I changed the Numpy version to 1.24.0.
I would like to know if such an operation will have a significant impact on the subsequent process.Thank you!!