Data Science

How to deploy a simple Python app using Heroku?

This post walks you through how to set up a simple Python app where one can upload data, triggering a script to read the uploaded data and process it, and download the results in the end.

Read more...

How to connect Python to Oracle database?

Oracle is a popular DBMS and this post walks you through how to set up the connectivity between it and Python.

Read more...

A scheduling optimization problem with flexible dates (part 2/2)

I implemented the algorithm in Python and the code is available on my GitHub site in Jupyter Notebook format. I hope my solution serves as a starting point for anyone who is trying to solve such problems. 

Read more...

A scheduling optimization problem with flexible dates (part 1/2)

We want to assign 6 employees to 30 projects while maximizing total client satisfaction. As long as a project is completed by the deadline, its starting date is flexible. No employee can be on multiple projects at the same time.

Read more...

Generative deep learning (part 2/2)

This post goes through the last 2 examples of DLP Ch 8. They demonstrate how image generation in DL works and the approach can be extended to sound and text.

Read more...