Project Docs
  • 👋Welcome to End2End Data Science Project Documentation
  • About us
    • 💡Who we are
  • Project Guides
    • 📪Project Pipeline Overview
    • 📎Understanding Projects
  • Fundamentals
    • 🛠️Getting started
      • 💻Step 1: Github
        • Working with Git & Github
          • Setting up your repository & project
          • Git Branching
          • Push & Pull
          • Pull Request
        • Resources
        • Exercise
      • 💻Step 2: Python Setup
      • 💻Step 3: Conda Environment
        • Working with Conda Environment
        • Resources
      • 💻Step 4: MySQL, Postgres & Oracle DB
        • Quick review on SQL
        • Exercises (Under development)
      • 💻Step 5: Project Setup
      • 💻Step 6: AWS & GCP
        • Automation
      • 📉Step 7: Final Presentation
      • 🚀Step 8: Docker
        • Creating Docker Image
        • Useful Docker commands
  • 📔Interesting articles
    • Data Engineering
    • Data Science
    • ML & MLOps
  • 📔Resources
Powered by GitBook
On this page
  • Project Objective
  • How the project works
  • Organising your Project
  • Structuring your Project README
  • Project Ideas
  1. Project Guides

Understanding Projects

PreviousProject Pipeline OverviewNextGetting started

Last updated 1 year ago

Project Objective

The goal of the project is to establish a comprehensive data science pipeline that encompasses all stages, such as acquiring data, constructing ETL pipelines, developing models, deploying them, and engaging with the final user.

How the project works

Organising your Project

NOTE: Anything in CAPS below are folder directories.

PROJECT
├── README.md
├── DATA
│   ├── <all data>
├── SRC
│   ├── __init__.py
│   ├── <python scripts>
├── TESTS
│   ├── __init__.py
│   ├── <all test files>
├── CONFIG
│   ├── config.yml
│   ├── config_template.yml
├── .GITHUB
│   ├── pull_request_template.md
│   ├── WORKFLOW
│       ├── github-actions.yml
├── Docker
├── Makefile
├── requirements.txt
├── .gitignore

Structuring your Project README

  • Project Name

  • Project Description

  • Quick Start

  • Pipeline Visualization

  • Contribution

  • Credits

Project Ideas

  • Forecasting In Supply Chain (such as in retail industry)

  • Customer Lifetime Value to help Marketing team to increase sales growth.

and many more...

📎
End2End Architecture