Open nasreenresearch opened 8 months ago
ModuleNotFoundError: No module named 'avalanche.benchmarks.generators'
ModuleNotFoundError: No module named 'avalanche.training.strategies'
All other packages are working for me except the above two! What would be the issue? please help!
same issue
I encountered the same error, so I changed it to the following and it worked for me: from avalanche.benchmarks import nc_benchmark, ni_benchmark
from avalanche.benchmarks import nc_benchmark, ni_benchmark
pip install avalanche-lib==0.1.0
from avalanche.benchmarks.generators import nc_benchmark, ni_benchmark
ModuleNotFoundError: No module named 'avalanche.benchmarks.generators'
from avalanche.training.strategies import Replay
ModuleNotFoundError: No module named 'avalanche.training.strategies'
All other packages are working for me except the above two! What would be the issue? please help!