Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 710 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 710 Bytes

ML Assignments

The instructions below will get you started with running the programming component of the Assignment on your local machine. The below commands work for Linux/MacOS distributions.

Prerequisites

Python3

Open a Terminal/Shell and run the following commands. The dataset input to the given command should be a CSV file.

perceptron

Command : python perceptron.py --dataset --mode <erm/cv> Output : Weight vectors from the perceptron algorithm and mean error.

adaboost

Command : python adaboost.py --dataset --mode <erm/cv> Output : Weight vectors from the adaboost algorithm and mean error.

svm

Command : python svm.py