Giter Site home page Giter Site logo

shuyib / mawingu-experiments Goto Github PK

View Code? Open in Web Editor NEW
3.0 1.0 1.0 756 KB

Handbook for putting applications in the cloud referencing DS and ML paradigms.

License: Creative Commons Zero v1.0 Universal

Dockerfile 0.91% Python 3.23% Jupyter Notebook 95.07% Makefile 0.80%
data-science docker k8s kubernetes mlops-workflow continuous-delivery fullstack-datascientist mlops mlops-project ml-engineering-for-production

mawingu-experiments's Introduction

This is a project that has various examples of how you can use kubernetes to run containers in a docker registry in a cloud provider. The examples are mostly pitched on data science and machine learning however, some don't meet that categorization.

. ├── data-science-workflows - data science related projects with data loaders, plots, Application programming Interfaces.
│   ├── README.md - Explanation of the different use cases an data driven application (dataloader + plotter) & an API.
│   ├── workflow3-data-driven-app
│   │   ├── dataloader
│   │   │   ├── deployments.yaml
│   │   │   ├── Dockerfile
│   │   │   ├── main.py
│   │   │   ├── Makefile
│   │   │   ├── mylib
│   │   │   │   ├── dataloader.py
│   │   │   │   └── init.py
│   │   │   ├── Pipfile
│   │   │   ├── Pipfile.lock
│   │   │   └── test_main.py
│   │   ├── README.md
│   │   └── timeseries_plot
│   │   ├── deployments.yaml
│   │   ├── Dockerfile
│   │   ├── Makefile
│   │   ├── mylib
│   │   │   ├── dataloader.py
│   │   │   ├── init.py
│   │   ├── Pipfile
│   │   ├── Pipfile.lock
│   │   └── plot_timeseries.py
│   └── workflow4-data-science-api
│   ├── app.py
│   ├── deployments.yml
│   ├── Dockerfile
│   ├── iris-fit-k-nearest-neighbors-pickle-model.ipynb
│   ├── iris_knn_model.pkl
│   ├── Makefile
│   ├── pycaret+gradio.zip
│   ├── README.md
│   ├── requirements.txt
│   ├── service.yaml
│   └── test_api_endpoint.ipynb
├── getting-stuff-to-cloud.md - a summary of how its done of digital ocean.
├── kubernetes-scheduling - example where you run a cronjob every 5 minutes: Here a job that does a dot product on multidimensional arrays made with numpy.
│   ├── deployments.yaml - manifest file that specifies instructions that will be given to the kubernetes cluster. It is a cron job meaning that it will run after a certain interval.
│   ├── Dockerfile - a file that runs the whole application.
│   ├── matmulsched.py - Python script that records the timestamp before the dot product is run and wait for a few minutes and stops.
│   ├── Pipfile - contains the requirements of the project as well as the python version.
│   ├── Pipfile.lock - Just freezes the requirements for the project.
│   └── README.md - Summary of what the project is about and how to run it.
├── LICENSE - CC0-1.0 license
├── ping-app - a simple flask application that prints out pong if you run a CURL request.
│   ├── deployments.yaml - manifest file that specifies instructions that will be given to the kubernetes cluster.
│   ├── Dockerfile - a file that packages and runs the application like a zip file.
│   ├── ping.py - python file that defines the Flask application and associated methods.
│   ├── Pipfile - contains the requirements of the project as well as the python version.
│   ├── Pipfile.lock - Just freezes the requirements for the project.
│   └── service.yaml - manifest that is passed to the k8s cluster to expose the application to the internet via an IP and host.
└── README.md - the file you are reading.

You can make these containers made smaller to run more with your limited capacity on digital ocean. Will explore that in the future. Enjoy!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.