Projects
This page describes, with some detail, several projects I have recently completed.
To obtain more information about each project (including a detailed description and the Python code), hover the mouse over the pictures and click on the PROJECT buttons that appears.
To see just a list with very brief descriptions, click on the button ALL PROJECTS below this line.
MACHINE LEARNING PROJECTS
Retail Expansion Analysis with Lasso & Ridge Regressions
Using purchase data from Iowa liquor stores, regularized regression models are used to provide recommendations on where new stores should be opened.
Predicting Outcomes of Tennis Matches
The probability that the higher-ranked player will win a match is estimated using logistic regression, decision trees, and random forests.
Predicting Comments on Reddit using Ensemble Tree Models
Here, features of Reddit posts (obtained via webscraping) that contribute most to the number of comments were obtained. Natural Language Processing was then used to feed data into a Random Forest Classifier.
Predicting Customer Churn
Churn rate is the rate at which user leave a product or service. In this project, the churn rate at a mobile phone company is predicted using a Support Vector Machines and Random Forest Classifiers
Predicting clicks on digital ads
In this project I predict the likelihood that a given online ad will be clicked. This type of model is useful for companies that include online advertising in their media mix.
Principal Components Analysis (PCA) and Wines
In this project I introduce the basic concepts of principal component analysis (PCA) and apply the technique to a dataset containing information about wines.
DEEP LEARNING PROJECTS
Painter Identification Using Convolutional Neural Networks
I built a Convolutional Neural Net to identify the artist of a painting via transfer learning, instantiating the convolutional part of the Inception V3 model, and training a fully-connected network on top (see slides).
Deep Learning, Bitcoin Price Data and Altcoins Correlations
I built predictive models for Bitcoin price data using recurrent neural networks (LSTMs). Correlations between altcoins are also considered.
Deep Learning with Keras and TensorFlow
Neural networks tutorial where I build fully-connected networks and convolutional neural networks using both Keras and TensorFlow respectively (in progress).
Deep Learning Applied to Quantum Mechanics
Neural networks tutorial where I build fully-connected networks and convolutional neural networks using both Keras and TensorFlow respectively (in progress).
NATURAL LANGUAGE PROCESSING
neural language models and spinoza's Ethics
Spinoza's Ethics was used to build a language model for text generation with recurrent neural nets.
Sentiment analysis of movie reviews
A "reverse sentiment analysis" using Bernoulli Naive Bayes was performed on movie reviews (already classified) to identify which words appear more frequently on reviews from each class.
MISCELLANEOUS TOPICS
Algorithmic Trading with Python
Detailed tutorial showing how to use Python and several of its libraries to build strategies for algorithmic trading. Backtesting is also discussed.
Google Analytics Customer Revenue Data Exploration using Python
A customer dataset from Google Merchandise Store is used to forecast revenue per customer. Results from different machine learning algorithms are compared.
Fuzzy Matching
Basic concepts underlying Fuzzy Matching, a technique that significantly improves the ability to match phrases/sentences/strings in a database, are explained. The method is then applied to a dataset from Expedia, an American global travel technology company.
Social Network Analysis
In this notebook, my goal is to provide a basic introduction to the subject of social media networks, using Python’s library NetworkX.
Linear Optimization using PuLP
In this notebook it is shown how to write generic complex optimization problems using PuLP, a Python-based linear optimization library. PuLP is particularly useful in cases where constraints and/or the objective function involve products of quantities containing a large number of indexes.
UNSUPERVISED LEARNING
Topic Modeling Applied to a Corpus of Research Papers
In topic modeling, topics are identified in a document or a set of documents. This project uses one specific method, Latent Dirichlet Allocation (LDA) and apply it to a corpus of research papers.
Clustering Algorithms Applied to Data with Mixed Types (In R)
In this project, clustering algorithms are applied to a data set containing both categorical and continuous variables. In such cases, commonly used distance measures (e.g. Euclidean) cannot be applied.
TOPICS IN TIME SERIES ANALYSIS
Vector error correction model (VECM): applications in finance
Error correction models using the Engle–Granger method suffer from many limitations. The VECM addresses many of those issues. In this project, VECMs are used for pairs trading of stocks.
Bayesian structural time-series models (BSTM)
In this project, Bayesian structural time-series models or BTSMs are used to analyze the impact on BP stocks of the BP oil spill in '10. We will use the Causal impact library in R
COMPUTATIONAL PHYSICS
Many-Body Localization (MBL)
When disorder and interactions are both present in an isolated quantum system, the MBL phase emerges. Here I used the QuSpin package to study the adiabatic ramping of parameters for a spin chain in a disordered field.
STATISTICAL ANALYSIS AND DATA EXPLORATION
Analysis of the Decline of Participation in Standardized Tests
The goal was to make suggestions to the SAT's College Board to help them increase the participation rates in their exams. I performed a comprehensive statistical analysis of both SAT and ACT participation rates.