Solve the issue of "TqdmWarning: IProgress not found"
Solve the issue of "TqdmWarning: IProgress not found"
Description
When using models from Hugging Face, we typically import the libraries with from transformers import *. However, doing so often triggers the warning: “TqdmWarning: IProgress not found. Please update Jupyter and ipywidgets.”
Solution
To resolve this, simply use the following command to update ipywidgets:
1
pip install ipywidgets -U
This post is licensed under CC BY 4.0 by the author.