Skip to content

Solutions for Stanfords CS231N course on deep learning for 2022

Notifications You must be signed in to change notification settings

AbrahamRabinowitz/DLSolutions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

DLSolutions

This repository collect solutions for Stanfords CS231N course on deep learning for 2022 which implemented and studied various machine learning and deep learning methods for computer vision. The purpose was to get some hands on experience with neural nets and some common architectures under the hood. Unless there is an explicit mention to Pytorch implementations are done using NumPy in the codebase used for the course.

Assignment 1

  • knn for image classification goes over the k nearest neighbors approach for image classification.
  • Softmax classifier goes over softmax classification a generalization of logistic regression for image classification.
  • Support Vector Machines goes over support vector machines for image classification.
  • 2-Layer Nets uses a simpler 2 layer feed forward neural net for image classification
  • Features learned by the methods above are analyzed in this notebook.

Assignment 2

  • Fully Connected Nets implements fully connected neural networks with regularization for an arbitrary amount of hidden layers.
  • Batch Normalization implements batch normalization for neural network and demonstrates its usefulness for generalization.
  • Dropout implements dropout a popular method for regularizing neural networks.
  • Convolutional Neural Networks implements convolutional neural networks a popoular architecture used for computer vision.
  • Pytorch goes through some Pytorch examples in increasing levels of abstraction from Pytorch tensors to modules to sequential.

Assignment 3

About

Solutions for Stanfords CS231N course on deep learning for 2022

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published