You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Colab may come with torchaudio 2.8.0, which is incompatible with torch 2.6.0.
61
+
Installing the versions above resolves this issue.
62
+
63
+
- filelock conflicts with nni
64
+
Some preinstalled packages (such as pytensor with newer filelock) may conflict.
65
+
Use the following commands to fix:
66
+
67
+
pip uninstall -y pytensor
68
+
pip install -U filelock
69
+
70
+
- Too many workers warning
71
+
Colab has limited CPU resources, and high num_workers settings may freeze execution.
72
+
It is recommended to use --num_workers=2 when running tutorials and adjust the `num_workers` parameters where it is used in notebooks (eg. for data loaders).
73
+
74
+
75
+
### Quick smoke test
76
+
77
+
After installation, verify the environment by running:
0 commit comments