Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,20 +1,34 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
-
|
| 10 |
-
pinned: false
|
| 11 |
-
short_description: Plot based recommendation movies list
|
| 12 |
-
license: mit
|
| 13 |
-
---
|
| 14 |
|
| 15 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# π¬ Movie Recommendation System
|
| 2 |
+
|
| 3 |
+
This is a **content-based movie recommender** built using **Python, Streamlit, and Hugging Face Spaces**.
|
| 4 |
+
It suggests movies similar to your favorite film using cosine similarity on movie metadata.
|
| 5 |
+
|
| 6 |
+
## π Features
|
| 7 |
+
- Search any movie from the dataset
|
| 8 |
+
- Get 5 similar movie recommendations instantly
|
| 9 |
+
- Interactive web app powered by Streamlit
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
+
## π Tech Stack
|
| 12 |
+
- **Python 3.9**
|
| 13 |
+
- **Pandas**, **NumPy** for data processing
|
| 14 |
+
- **Scikit-learn** for cosine similarity
|
| 15 |
+
- **Streamlit** for UI
|
| 16 |
+
- Hosted on **Hugging Face Spaces**
|
| 17 |
|
| 18 |
+
## π Dataset
|
| 19 |
+
The app uses:
|
| 20 |
+
- `tmdb_5000_movies.csv`
|
| 21 |
+
- `tmdb_5000_credits.csv`
|
| 22 |
+
(from [Kaggle TMDB Movie Dataset](https://www.kaggle.com/datasets/tmdb/tmdb-movie-metadata)).
|
| 23 |
+
|
| 24 |
+
## π Live Demo
|
| 25 |
+
π [**Try the App Here**](https://huggingface.co/spaces/akashraut/RECOMMENDATION_SYSTEM)
|
| 26 |
+
|
| 27 |
+
---
|
| 28 |
|
| 29 |
+
### How to Run Locally
|
| 30 |
+
```bash
|
| 31 |
+
git clone https://huggingface.co/spaces/akashraut/RECOMMENDATION_SYSTEM
|
| 32 |
+
cd RECOMMENDATION_SYSTEM
|
| 33 |
+
pip install -r requirements.txt
|
| 34 |
+
streamlit run app.py
|