Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 743 Bytes

README.md

File metadata and controls

42 lines (33 loc) · 743 Bytes

FastAPI Machine Learning API

Overview

This service exposes an API for various machine-learning tasks, designed to be called by the Dalgo backend.

Installation and Setup

Prerequisites

  • Python 3.6 or higher
  • Pip (Python package installer)

Clone the Repository

git clone <repository_url>
cd <repository_name>

Create and Activate Virtual Environment

  python -m venv venv

On Windows:

  .\venv\Scripts\activate

On Linux/Mac:

  source venv/bin/activate

Install Dependencies

  pip install -r requirements.txt

Run the Application

  python main.py --port 8080

The FastAPI application will be accessible at http://127.0.0.1:8080.