Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 633 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 633 Bytes

CSI

  1. winequality.csv - Dataset
  2. Phase1_Python - Naive Linear Regression Model (DL approach) with the capability to save and load the model.
  3. Phase2_Python - a.) AbstractClass_ML_Model.py - Implemented an AbstractBaseClass to implement TF model encapsulation. b.) DriverModule.ipynb c.) DriverModule.py - The module that reads the data from the dataset, creates model, and call train() on each datapoint, uses the trained model to perform prediction. d.) TensorflowClass.py - Worker Module - Class implementing the ABC that encapsulates TF model.
  4. Phase1_Scala - Naive Linear Regression model - ML & DL