Skip to content

nikithakamurthy/ML-SMP-18

 
 

Repository files navigation

ACM-Machine Learning SMP

This repository contains all the coursework and assignments for the summer mentorship project 2018 on Machine Learning.

How to submit assignments?

1) Fork the repository.

2) Clone the forked repository using:

git clone https://github.com/your-username/ML-SMP-18.git

3) Change directory and create a folder with your name. Inside the folder create a text file with your details.

cd ML-SMP-18
mkdir your-name
cd your-name
gedit intro.txt // This creates /opens a text file in the gedit editor of your linux system

Copy and paste your Jupyter Notebooks into the directory. ( .ipynb file )

4) Add and commit changes. Push it to your repository.

git add .	// ' . '  is used to add all files. git add file-name adds single files 
git commit -m "Your message"
git push origin master

5) Login to github and send a pull request to ACM-NITK/ML-SMP-18 To configure upstream:

git remote add upstream https://github.com/ACM-NITK/ML-SMP-18.git

To pull the latest changes:

git fetch upstream
git checkout master
git merge upstream/master

OR, use GUI to create a pull request from 'your' forked repository.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.6%
  • Python 0.4%