{% extends "base.html" %} {% block content %}

I am a data scientist with a Ph.D. in quantitative political science and a decade of experience working in statistical learning, artificial intelligence, and software engineering.

This site will host my notes on machine learning and programming. This project is open source and available on GitHub.

Thanks to Dr. Chris Albon for inspiring this project and providing the code skeleton for this website

Blog


Machine Learning

Basics

    {% for article in articles if article.category == 'Machine Learning' and 'Basics' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Preprocessing

    {% for article in articles if article.category == 'Machine Learning' and 'Preprocessing' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Feature Engineering

    {% for article in articles if article.category == 'Machine Learning' and 'Feature Engineering' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Feature Selection

    {% for article in articles if article.category == 'Machine Learning' and 'Feature Selection' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Supervised Learning - Classification

    {% for article in articles if article.category == 'Machine Learning' and 'Supervised Learning - Classification' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Supervised Learning - Regression

    {% for article in articles if article.category == 'Machine Learning' and 'Supervised Learning - Regression' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Unsupervised Learning

    {% for article in articles if article.category == 'Machine Learning' and 'Unsupervised Learning' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Model Selection

    {% for article in articles if article.category == 'Machine Learning' and 'Model Selection' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Model Evaluation

    {% for article in articles if article.category == 'Machine Learning' and 'Model Evaluation' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Python

Basics

    {% for article in articles if article.category == 'Python' and 'Basics' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Data Wrangling

    {% for article in articles if article.category == 'Python' and 'Data Wrangling' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Data Visualization

    {% for article in articles if article.category == 'Python' and 'Data Visualization' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Web Scraping

    {% for article in articles if article.category == 'Python' and 'Web Scraping' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Algorithms

    {% for article in articles if article.category == 'Python' and 'Algorithms' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Testing

    {% for article in articles if article.category == 'Python' and 'Testing' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Other

    {% for article in articles if article.category == 'Python' and 'Other' in article.tags %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Bash

    {% for article in articles if article.category == 'Bash' %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

SQL

    {% for article in articles if article.category == 'SQL' %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}

Mathematics

    {% for article in articles if article.category == 'Mathematics' %}
  • {{ article.title }}
  • {% else %}
  • Coming soon.
  • {% endfor %}
{% endblock content %}