FastAPI
Microservice creation and Machine Learning Model Deployment using FastAPI
Install / Use
/learn @TripathiAshutosh/FastAPIREADME
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
