Life Long Learning (Continual Learning) for Deep Neural Networks in practice

Are there any techniques (or practices) which are widely used in the industry for Life-Long Learning?
One common advice people give is to use low learning rate for new set of incremental data to fine tune the network but this deteriorates the previously learnt weights (quite badly) over time. @jeremy mentioned in Lecture 3 (2019)@43:32 that one can train with higher learning for new (incremental) dataset but this can lead to overfitting of the new data and thus the network will forget about what it has learnt previously. This effect is even worse if the incremental is quite small. At least, this is my experience.

There are so many research on this topic using various concepts such as, distillation, elastic weight consolidation, learning without forgetting, incremental classifier representation learning, deep adaption, progressive distillation and retrospection, hedge adaption, just to name a few which I am aware of. But they are on research datasets and I am not sure whether they can actually perform as they are advertised in real world datasets.

Some companies (https://www.neurala.com/press-releases/neurala-announces-breakthrough-update-to-award-winning-deep-neural-network-technology) claim that they have a solution for catastrophic forgetting of deep learning (with a slightly reduced performance on the whole dataset)

I’m also interested in the topic. As a first (even if not at all satisfying) view on the topic the notebook from continuai on GitHub is providing a nice practical introduction in some of th classical concepts: https://github.com/ContinualAI/colab/blob/master/notebooks/intro_to_continual_learning.ipynb

I found a good source also the publications mentioned on this site: https://www.cs.uic.edu/~liub/lifelong-learning.html

You are mentioning some more resources and papers. Would you mind sharing what you thought gave most insights to you?