SAMH / README.md
Timmyafolami's picture
Update README.md
8a40fe9 verified
metadata
title: SAMH
emoji: 
colorFrom: purple
colorTo: blue
sdk: docker
pinned: true
license: mit
short_description: Sentment Analysis for Mental Health

Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference

Sentiment Analysis API

image/png

This project provides a sentiment analysis API using FastAPI and a machine learning model trained on textual data.

Features

  • Data ingestion and preprocessing
  • Model training and saving
  • FastAPI application for serving predictions
  • Dockerized for easy deployment

Setup

Prerequisites

  • Docker installed on your system

Build and Run

  1. Build the Docker image:

    docker build -t sentiment-analysis-api .
    
  2. Run the Docker container:

    docker run -p 8000:8000 sentiment-analysis-api
    
  3. Access the API:

Example cURL Command

curl -X POST "http://localhost:8000/predict_sentiment" -H "Content-Type: application/json" -d '{"text": "I love programming in Python."}'