AI_Movie Recommendation
1.0.0
This project implements a movie recommendation system using vector search and cosine similarity. The system takes user input in the form of a movie title or overview and returns the most similar movies based on their embeddings.
Clone the repository:
git clone https://github.com/NexusAurora/MovieApp.git
cd MovieAppBuild the Docker image:
docker build -t MovieApp .Run the Docker container:
docker run -p 8000:8000 MovieAppOnce the application is running, you can make POST requests to the /search endpoint to get movie recommendations.
http://localhost:8000/searchPOST{
"query": "Your movie title or overview",
"results": 5
}The response will be a JSON object containing the recommended movies and their probabilities:
[
{
"Output": {
"title": "Movie Title 1",
"overview": "Overview of Movie 1"
},
"Probability": 0.95
},
{
"Output": {
"title": "Movie Title 2",
"overview": "Overview of Movie 2"
},
"Probability": 0.92
}
]This project is licensed under the MIT License. See the LICENSE file for details.
My Name
My GitHub Profile