Useful CSE 160 Resources¶
Overview¶
In this assignment, you’ll be designing, implementing, and using k-means clustering, a technique often used in machine learning. By the end of this assignment, you will:
- Be familiar with how to implement a clustering algorithm and use it for data analysis.
- Write Python code using lists and dictionaries for computational problem solving.
Submission¶
This homework is split into two parts to help break down the task into more manageable chunks:
- Part 1: Submit
kmeans.py
with at least Part 1 completed by Friday, May 3rd. - Part 2: Submit
kmeans.py
,analysis.py
, andanswers.txt
with all parts completed by Friday, May 10th.
HW4 - Homework 4 - Part 1
Initial Submission by Friday 05/03 at 11:59 pm.
Submit on GradescopeSubpages
- Background - Background information on k-means clustering.
- Part 1: The Algorithm - Complete part one of the programming assignment, where you will implement the k-means clustering algorithm.
- Part 2: Analysis - Complete part two of the programming assignment, where you will use your algorithm!