Deployment
This page serves as a guide on how to deploy the Gradio application in order to call a server that will inference the model for you
This page covers the basic process workflow.
Setup
Prerequisites
- Docker Engine/Desktop: Ensure you are running this notebook in Google Colab for GPU support.
Deployment
- Clone the repo and change dir
git clone https://github.com/martintmv-git/RB-IBDM.git
cd gradio-apps/gradio-insectsam
- Build the image and run the container
docker build -t insectsam-server .
# Run the Container
docker run -d --name insectsam-app -p 7860:7860 insectsam-server
Open the UI web app
Open http://localhost:7860/ on your browser.