An end-to-end movie recommendation system built with Svelte, SvelteKit, PostgreSQL, and pgvector.
This project uses a processed version of the latest MovieLens dataset. The original dataset includes a rich collection of movie ratings and tags from thousands of users. For this project, the data was processed and inserted into a PostgreSQL database, optimized for efficient querying and recommendation generation. To get more details about processing and inserting the data, please refer to github repo.
This project is a hybrid movie recommendation service that leverages both content-based and collaborative filtering techniques. It utilizes a vector database for efficient similarity searches, providing users with personalized movie suggestions.
Clone the repository:
git clone https://github.com/hasibuldog/movie_recommender_svelte.git
cd movie-recommendation-service
Install dependencies:
npm install
Set up environment variables:
Create a .env
file in the root directory and add the following:
DB_URL=your_postgres_connection_string
TMDB_API_KEY=your_tmdb_api_key
Start the development server:
npm run dev
Open your browser and navigate to http://localhost:5173
to see the app in action.