Git Product home page Git Product logo

ml-fundamental's Introduction

ML-Fundamental

Machine learning algorithm fundamental knowledge, Including code implementation notes and experiments. Most of the works are based on the assignment in Columbia University, See Acknowledgement of each notebook

  • Implementing feedforward neural network with numpy
  • Implementing Backpropogation to train the model
  • Hand-write gradient calculation for backpropogation
  • Implementation of common optimizers:
    • Gradient Descent, SGD, SGD + Momentum, AdaGrad, ADAM
    • Intuition behind each optimizer
  • Test the performance of each optimizers on test functions:
    • bowl, mult, monkey, matyas, Easom
  • To test and compare each optimizer when
    • Contains Local mins
    • Contains Saddle
    • Hyperparameter is wrong
  • Fundamental knowledge of convolution
  • Implement Conv2D with Numpy
  • Applications and classic filters including
    • Image Denoising
    • Edge Detection
  • Application of Fourier transform on image
    • Convolution in time space is multiplication in frequency space
    • Convolution in frequency space is multiplication in time space
    • When Kernel is large, multiplication in Fourier space can enhance efficiency
  • Implement and test Matching Network and Prototypical Network
  • N-way, K-shot classification on the Omniglot dataset
  • Personally, I prefer to call it Convolutional KNN, because under the hood the model finish the task by:
    • Train a Conv encoder until the supporting sets are seperable in embedding space
    • Then use the encoder to map the query image into embedding space and run KNN with supporting set in the embedding space to generate the prediction
    • The only difference for Matching Network and Prototypical Network are the metric used for KNN
  • Common Generative adversarial network on Minist dataset, nothing special
  • Common Variational auto encoder on Minist dataset, nothing special

ml-fundamental's People

Contributors

cchenli avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.