Skip to content

smagen12/AoN-Image-Classification-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Anime vs Cartoon Classifier API

A deep learning–powered image classification API that detects whether an image is in Anime or Cartoon style.
Built with TensorFlow/Keras and served via FastAPI. Dockerized and CI-tested with GitHub Actions.


Install Locally

Virtual environment recommended

pip install -r requirements.txt
uvicorn app.main:app --reload

Once running, open your browser to:

http://127.0.0.1:8000/docs

🐳 Docker Instructions

# Build the Docker image
docker build -t anime-cartoon-api .

# Run the container
docker run -p 8000:8000 anime-cartoon-api

API will be available at:

http://localhost:8000/docs

Next Steps

  • Add Gradio web UI for live image testing
  • Push Docker image to Docker Hub
  • Deploy to Hugging Face Spaces or Render

About

Image classification API that leverages a deep learning model to classify images as either Anime or Cartoon. The API will expose a prediction endpoint to take an image as input and return a Classification label.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors