This PR moves the continual_learning framework into a separate optional installable package for nupic.research but keeps it installed in the default conda environment (environment.yml) as it is commonly used framework by many active projects and other frameworks. The other framework dependencies will be updated once they are also coverted to standalone packages.
After this PR is merged, those using the default conda environment and continual_learning must call conda env update or pip install -e packages/continual_learning to install the framework
NOTE:
The old continual learning implementation was moved to the nupic.research.archive package and will not be installed by default. You must install the nupic.research.archive package manually If you need to use any of the projects using the old implementation
This PR moves the
continual_learning
framework into a separate optional installable package fornupic.research
but keeps it installed in the defaultconda
environment (environment.yml
) as it is commonly used framework by many active projects and other frameworks. The other framework dependencies will be updated once they are also coverted to standalone packages. After this PR is merged, those using the default conda environment andcontinual_learning
must callconda env update
or pipinstall -e packages/continual_learning
to install the framework