In "02_Where_finetunaing_fits_in_lab_student", the ipynb file is no futher results and reactions after excuted

In the Jupyter Notebook titled “02_Where_finetuning_fits_in_lab_student,” I encountered an issue where the notebook does not produce any further results or reactions after executing the third cell [* the code in this artile below].

Even though the code runs without any apparent errors, there is no output generated. What could be the potential reasons for this behavior, and how can I troubleshoot or resolve this issue to get the expected results? Thanks !


  • The third cell code :
 n = 5
 print("Pretrained dataset:")
 top_n = itertools.islice(pretrained_dataset, n)
 for i in top_n:
   print(i)