[Colab link]This Offical colab Simclr does not work after some update

Thank you if you can help or point out the issue.

I did not try to figure out what is wrong… here is the error when I just simply run it with Colab:
ModuleNotFoundError Traceback (most recent call last)
in ()
1 import os
----> 2 from pl_bolts.callbacks.self_supervised import SSLOnlineEvaluator
3
4 # init callbacks
5 def to_device(batch, device):

ModuleNotFoundError: No module named ‘pl_bolts.callbacks.self_supervised’

try this
from pl_bolts.callbacks.ssl_online import SSLOnlineEvaluator

https://pytorch-lightning-bolts.readthedocs.io/_/downloads/en/latest/pdf/

Thanks, replaced the line as you suggested. It was successful for import, but running into problems in training.