Execution Instructions for problem 1 and problem 2:

Code for problem 1 is available in p1 folder and for problem 2 in p2 folder.

The source files are available in "src" folder within each of these folders.

In order to execute the programs, go to EntryPoint.java file in src folder of each problem and update the path of below contants to the dataset path:

   --- HOUSING dataset training and test path
    static final String HOUSING_DATASET_PATH ;
    static final String HOUSING_TESTSET_PATH ;
    --- SPAM BASE dataset path
    static final String SPAMBASE_DATASET_PATH ;

Save the files.
On command prompt go to folder p1 in order to execute the problem 1 solution or p2 in order to execute solution for problem 2.

run the solutions within their respective folders with one of the below command line options:
 
1. ./build.sh EntryPoint 0 - in order to execute program on housing dataset
2. ./build.sh EntryPoint 1 - in order to execute program on spambase dataset


