All Projects → FilippoBovo → Production Data Science

FilippoBovo / Production Data Science

Production Data Science: a workflow for collaborative data science aimed at production

Projects that are alternatives of or similar to Production Data Science

Flyte
Accelerate your ML and Data workflows to production. Flyte is a production grade orchestration system for your Data and ML workloads. It has been battle tested at Lyft, Spotify, freenome and others and truly open-source.
Stars: ✭ 1,242 (+220.1%)
Mutual labels:  data-science, production, workflow
Probability
Probabilistic reasoning and statistical analysis in TensorFlow
Stars: ✭ 3,550 (+814.95%)
Mutual labels:  jupyter-notebook, data-science
Evidently
Interactive reports to analyze machine learning models during validation or production monitoring.
Stars: ✭ 304 (-21.65%)
Mutual labels:  jupyter-notebook, data-science
Experiments with python
experiments with python
Stars: ✭ 342 (-11.86%)
Mutual labels:  jupyter-notebook, data-science
Cartola
Extração de dados da API do CartolaFC, análise exploratória dos dados e modelos preditivos em R e Python - 2014-20. [EN] Data munging, analysis and modeling of CartolaFC - the most popular fantasy football game in Brazil and maybe in the world. Data cover years 2014-19.
Stars: ✭ 304 (-21.65%)
Mutual labels:  jupyter-notebook, data-science
Apricot
apricot implements submodular optimization for the purpose of selecting subsets of massive data sets to train machine learning models quickly. See the documentation page: https://apricot-select.readthedocs.io/en/latest/index.html
Stars: ✭ 306 (-21.13%)
Mutual labels:  jupyter-notebook, data-science
Kaggle public
阿水的数据竞赛开源分支
Stars: ✭ 335 (-13.66%)
Mutual labels:  jupyter-notebook, data-science
Scikit Learn Videos
Jupyter notebooks from the scikit-learn video series
Stars: ✭ 3,254 (+738.66%)
Mutual labels:  jupyter-notebook, data-science
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (-11.08%)
Mutual labels:  jupyter-notebook, data-science
Quantitative Notebooks
Educational notebooks on quantitative finance, algorithmic trading, financial modelling and investment strategy
Stars: ✭ 356 (-8.25%)
Mutual labels:  jupyter-notebook, data-science
Articles
A repository for the source code, notebooks, data, files, and other assets used in the data science and machine learning articles on LearnDataSci
Stars: ✭ 350 (-9.79%)
Mutual labels:  jupyter-notebook, data-science
120 Ds Interview Questions
My Answer to 120 Data Science Interview Questions
Stars: ✭ 304 (-21.65%)
Mutual labels:  jupyter-notebook, data-science
Python Seminar
Python for Data Science (Seminar Course at UC Berkeley; AY 250)
Stars: ✭ 302 (-22.16%)
Mutual labels:  jupyter-notebook, data-science
Erlemar.github.io
Data science portfolio
Stars: ✭ 309 (-20.36%)
Mutual labels:  jupyter-notebook, data-science
Pydataroad
open source for wechat-official-account (ID: PyDataLab)
Stars: ✭ 302 (-22.16%)
Mutual labels:  jupyter-notebook, data-science
Machine Learning For Trading
Code for Machine Learning for Algorithmic Trading, 2nd edition.
Stars: ✭ 4,979 (+1183.25%)
Mutual labels:  jupyter-notebook, data-science
Data Science
Collection of useful data science topics along with code and articles
Stars: ✭ 315 (-18.81%)
Mutual labels:  jupyter-notebook, data-science
Pycaret
An open-source, low-code machine learning library in Python
Stars: ✭ 4,594 (+1084.02%)
Mutual labels:  jupyter-notebook, data-science
Targets
Function-oriented Make-like declarative workflows for R
Stars: ✭ 293 (-24.48%)
Mutual labels:  data-science, workflow
Deltapy
DeltaPy - Tabular Data Augmentation (by @firmai)
Stars: ✭ 344 (-11.34%)
Mutual labels:  jupyter-notebook, data-science

Production Data Science

Data scientists, like software developers, implement tools using computer code. However, unlike software developers, data scientists do not typically receive a proper training on good practices and effective tools to collaborate and build products.

This guide attempts to merge the gap that data scientists may have in software development practices. We will look at a data science workflow in Python that adapts ideas from software development that ease collaborations and keeps a project in a state that is easy to productionise.

At the core of the data science workflow presented in this guide is an adaptation of the feature development and refactoring cycle which is typical of software development. In the software development cycle, new features are added to the code base and the code base is refactored to be simpler, more intuitive and more stable. In data science, data exploration takes the role of feature development. With this analogy, the data science cycle loops through data exploration and refactoring.

exploration_refactoring_cycle

In the exploratory phase, the code base is expanded through data analysis, feature engineering and modelling. In the refactoring phase, the most useful results and tools from the exploratory phase are translated into modules and packages.

An important motivation behind the workflow presented in this guide is to make life easier for other people and your future-self. The reason behind this motivation is that the combined time that other people save when understanding your tidier work is much more than the time you spend to tidy up your work. So, if everyone works with other people in mind, everyone eventually saves time. Moreover, as time goes on, you may forget the details about what you are working on now. So, it is also in your best interest to tidy up your work to make life easier for your future-self.

We will present the data science workflow using a tutorial, based on the popular Kaggle's Titanic data science challenge and formed of five parts: A - Setup, B - Collaborate, C - Explore, D - Refactor and E - Iterate to Product.

This tutorial assumes that you are familiar with Python 3, and relies on the assumption that you are skilled enough to use Google, StackExchange and other resources to fill some of the knowledge gaps that you may have. Another useful resource to get you started on new topics in Python is The Hitchhiker’s Guide to Python, which also includes references to more detailed material.

The links in this tutorial should be used only when the symbol appears. All other links point to further resources and are optional.

Quoted text is devoted to suggestions and observations.

Finally, here is a five-minute read about the story and motivation of the data science worflow on Medium or on Data Driven Journalism.

Let's start the tutorial!

➠ Start the Tutorial

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].