hand10ryo / PyTorchCML

PyTorchCML is a library of PyTorch implementations of matrix factorization (MF) and collaborative metric learning (CML), algorithms used in recommendation systems and data mining.
MIT License
20 stars 2 forks source link

Fix tqdm for notebooks #41

Open shivamtundele opened 2 years ago

shivamtundele commented 2 years ago

Please change all occurences of tqdm from from tqdm import tqdm to from tqdm.auto import tqdm. Otherwise, model fit is printing a new line of progress bar for every update in the notebook.

shivamtundele commented 2 years ago

Screen Shot 2022-06-23 at 1 54 46 PM

hand10ryo commented 1 year ago

Thank you! I will change it immediately.