Data Science Projects

This is an item in your portfolio. It can be have images or nice text. If you name the file .md, it will be parsed as markdown. If you name the file .html, it will be parsed as HTML.

# Data Science and Machine Learning Notebooks

  • Visualization for Exploratory Data Analysis
  • Data cleaning
    • Notebook
  • Dimension reduction
    • Notebook for PCA, LogisticRegression, DecisionTree, RandomForest (from Scikit-learn )
      • Data Set: Wine Quality
      • Problem: Predict quality of wine.
      • Approach: Used classification methods (Logistic Regression, Decision Tree, Random Forest) after applying PCA.
    • Notebook for PCA, LDA, Autoencoder (from Scikit-learn )
  • Clustering

  • Regression

    • Notebook for LinearRegression, Ridge, Lasso, ElasticNet, ElasticNet CrossValidation, HuberRegressor (from Scikit-learn )
    • TensorFlow.LinearRegressor
    • TensorFlow.DNNRegressor
  • Classification

    • Notebook for DNNClassifier, LinearClassifier (from TensorFlow)
      • Data Set: Wine Quality
      • Problem: Predict quality of wine.
      • Approach: Used classification methods (DNNClassifier, LinearClassifier).
    • SVM
  • Text Analysis and NLP
    • Word2Vec
  • Reinforcement Learning