• Stars
    star
    107
  • Rank 322,416 (Top 7 %)
  • Language
    Jupyter Notebook
  • License
    GNU General Publi...
  • Created over 3 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Microservice creation and Machine Learning Model Deployment using FastAPI

FastAPI

This repository explains how to create Microservices using FastAPI

Complete Explanation is available in below link:

https://ashutoshtripathi.com/2021/02/15/how-to-deploy-machine-learning-models-as-a-microservice-using-fastapi/

####### Create Python Virtual Environment and install all dependencies as follows ######

create venv using command: python -m venv venvname

activate venv: venvname\Scripts\Activate

install dependencies: pip install -r requirements.txt

run using: uvicorn main:app --reload