Assignment - 5 (Hierarchical Clustering and GMMs)
Due Date: 10/14/2024
Download
Assignment 05
Assignment 5 released on Hierarchical Clustering and GMMs. Here is the notebook.
Special Note for Colab Users
If you are doing this homework on Colab, you will have to take these 3 extra steps:
- Copy this zipped test folder
to your Colab local storage
- In colab run the following commands,
!pip install rarfile
!apt-get install unrar - Copy the below code and run it in a cell after the pip installations:
import rarfile
import os
rar_file = ‘hw5_tests.rar’
with rarfile.RarFile(rar_file) as rf:
rf.extractall(‘test’) - Add another code cell with
!pip install otter-grader
The last grader.export cell will give you an error, however all other cells should run. Download your notebook from Colab and submit the .ipynb directly to Gradescope.
Good luck! Please reach out on Piazza with any questions or issues.