Skip to content

shortthirdman/DataScience-Jupyter-Notebooks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Big Data MLOps Platform

Data Science and Machine Learning Jupyter Notebooks

Docker Image CI

Setup References

Dataset References

Docker commands

 docker system prune --all --volumes --force
 docker build --no-cache -f Dockerfile --progress=auto --compress --rm -t shortthirdman-org/bigdata-mlops-platform:latest .
docker buildx build --progress=auto --compress --rm -t shortthirdman-org/bigdata-mlops-platform:latest .
 docker run -d -n mlops -p 8888:8888 --restart unless-stopped shortthirdman-org/bigdata-mlops-platform:latest

Local Setup

  • Create a Python virtual environment and activate

    python -m venv dev
    .\dev\Scripts\activate
  • Install the packages and dependencies as listed in requirements file

    pip install -r requirements.txt --no-cache-dir --disable-pip-version-check
  • Start your development Jupyter Notebook or Jupyter Lab server

    jupyter lab --notebook-dir=.\notebooks --no-browser
    jupyter notebook

References