Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 2.05 KB

README.md

File metadata and controls

31 lines (24 loc) · 2.05 KB

第二周:分类

学习内容

视频课程

全部视频已传至内部 FTP 服务器,下面提供的链接是 Bilibili 上的观看地址。

文字资料

作业

In this assignment you will practice putting together a simple image classification pipeline, based on the k-Nearest Neighbor, logistic regression and decision tree classifier. The goals of this assignment are as follows:

  • understand the basic Image Classification pipeline and the data-driven approach (train/predict stages)
  • understand the train/val/test splits and the use of validation data for hyperparameter tuning.
  • develop proficiency in writing efficient vectorized code with NumPy
  • implement and apply a k-Nearest Neighbor (kNN) classifier
  • implement and apply a Multiclass Logistic Regression classifier
  • understand the differences and tradeoffs between these classifiers
  • get a basic understanding of performance improvements from using higher-level representations than raw pixels (e.g. color histograms, Histogram of Gradient (HOG) features)

Ref: CS231n assignment 1