Skip to content

MLElec/ML_course

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EPFL Machine Learning Course CS-433

Machine Learning Course, Fall 2017

Repository for all lecture notes, labs and projects - resources, code templates and solutions.

The course website and syllabus is available here: [https://mlo.epfl.ch/page-146520.html]

Contact us if you have any questions: epfmlcourse@gmail.com, or feel free to create issues and pull requests using the menu above.

Configure remote branch

You must configure a remote that points to the upstream repository in Git to sync changes you make in a fork with the original repository. This also allows you to sync changes made in the original repository with the fork.

git remote -v
git remote add upstream https://github.com/epfml/ML_course.git
git remote -v

Update remote branch

Sync a fork of a repository to keep it up-to-date with the upstream repository.

Before you can sync your fork with an upstream repository, you must configure a remote that points to the upstream repository in Git.

git fetch upstream
git checkout master
git merge upstream/master

Original post: Syncing a fork

About

EPFL Machine Learning Course, Fall 2017

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 90.4%
  • TeX 7.0%
  • Python 2.6%