Skip to content

madlab-ucr/CS235_CourseProject_Template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS235 Course Project Starter

A bare-bones project template for course project submission.

  1. EDA.ipynb - A notebook detailing exploratory data analysis. It is crucial to perform EDA before embarking on any machine learning journey.
  2. src/dataloader.py - Loads and preprocesses your raw data and converts it into a dataset consiting of train-validation-test sets. Returns said train-validation-test sets.
  3. src/models.py - Builds your models. Each model is a python class with at least train() and predict() methods along with class attributes for model hyperparameters. Returns the class object.
  4. src/evaluate.py - Contains all your evaluation metrics. Eg - a) In regression, MSE (closer to 0 = better) and if univariate then R2 (closer to 1 = better), if multivariate adjusted R2 (more positive = better) b) In classification, F1 or AUROC (closer to 1 = better), ROC curve, PR curve, confusion matrix c) In clustering, if some ground truth is available (which of course won’t be use while training the model) NMI, AMI, ARI (closer to 1 = better); if no ground-truth is available then report cluster quality with silhouette score (closer to 1 = disjoint clusters, closer to 0 = overlapping clusters), etc.
  5. src/driver.py - Entry-point script which calls - i. dataloader to get train-val-test sets or generators, ii. models to get a model object to be trained using the train set, iii. evaluate to evalute the trained model using the test set.
  6. src/utils.py - Contains utility functions that support your main scripts (plotting, etc.)

FAQs:

Can I use Scikit-Learn for ... ?

For dataset preprocessing? Yes. You can use built-in methods for splitting your dataset into train-test sets, for dimensionality reduction (e.g. using PCA) as a preprocessing step, for visualizing your high-dimensional datasets in a 2-D/3-D plots (e.g. using t-SNE, UMAP, etc) during exploratory data analysis (EDA).

For comparing YOUR implementation against a baseline? Yes. You can use the scikit-learn implementation as a baseline to compare your implementation against (for correctness, speed, etc.)

Can I use Tensorflow Keras / PyTorch for deep learning?

You are not expected to code every single neuron from scratch, so YES. You can use popular deep learning frameworks to - 1. design your custom neural networks and build your data generators, 2. use some existing, pretrained networks for transfer learning or as a baseline to compare your custom network against, 3. use built-in optimizers (like Adam, SGD, RMSProp, etc) for back propagation, 4. use tensorboard to monitor your training.

Can I customize this template to suit my project?

Absolutely, yes. The minimum modules required are - dataloader.py, models.py, evaluate.py, driver.py. You could additionally have utils.py, EDA.ipynb as shown in this repo. And you can have more scripts as needed by your project AS LONG AS YOU DOCUMENT WHAT THEY ARE!

(Note: Following this template as a group instead of dumping code in a collection of uncommented jupyter notebooks / scripts will make the grader's (and consequently your) life easier. Moreover, this repo demonstrates basic best practices for an end-to-end ML project.)

About

A generic project submission template.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published