Spaces:
Sleeping
Sleeping
feat(app/docs): update README.md with enhanced formatting and additional sections
Browse files
README.md
CHANGED
@@ -6,11 +6,47 @@ colorTo: blue
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.45.0
|
8 |
app_file: app.py
|
9 |
-
|
|
|
|
|
10 |
license: agpl-3.0
|
11 |
short_description: A semantic movie recommendation system.
|
12 |
---
|
13 |
|
14 |
-
# Intelliflix β Semantic Movie Recommender
|
15 |
|
16 |
-
Intelliflix is a semantic movie recommendation system powered by TMDb metadata and sentence-transformer embeddings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.45.0
|
8 |
app_file: app.py
|
9 |
+
tags:
|
10 |
+
- streamlit
|
11 |
+
pinned: true
|
12 |
license: agpl-3.0
|
13 |
short_description: A semantic movie recommendation system.
|
14 |
---
|
15 |
|
16 |
+
# π¬ Intelliflix β Semantic Movie Recommender
|
17 |
|
18 |
+
Intelliflix is a semantic movie recommendation system powered by TMDb metadata and sentence-transformer embeddings.
|
19 |
+
|
20 |
+
π‘ Simply enter a movie name or plot description, and Intelliflix will return semantically similar movies β not just based on genre, but meaning.
|
21 |
+
|
22 |
+
## π How It Works
|
23 |
+
|
24 |
+
- Uses TMDb metadata (title, overview, genres)
|
25 |
+
- Generates sentence embeddings using `all-MiniLM-L6-v2`
|
26 |
+
- Runs semantic search via FAISS over precomputed vectors
|
27 |
+
- Recommends movies with similar plot meanings
|
28 |
+
|
29 |
+
## π Dataset
|
30 |
+
|
31 |
+
This Space uses the [Intelliflix Store Dataset](https://huggingface.co/datasets/uiuxarghya/intelliflix-store), which includes:
|
32 |
+
|
33 |
+
- Movie metadata (`data/`)
|
34 |
+
- Sentence embeddings (`embeddings/`)
|
35 |
+
- FAISS vector indexes (`indexes/`)
|
36 |
+
|
37 |
+
## π Run Locally
|
38 |
+
|
39 |
+
```bash
|
40 |
+
git clone https://huggingface.co/spaces/uiuxarghya/intelliflix
|
41 |
+
cd intelliflix
|
42 |
+
pip install -r requirements.txt
|
43 |
+
streamlit run app.py
|
44 |
+
```
|
45 |
+
|
46 |
+
## π‘ License
|
47 |
+
|
48 |
+
This project is licensed under the **AGPL-3.0**.
|
49 |
+
|
50 |
+
## π« Author
|
51 |
+
|
52 |
+
Built by [Arghya Ghosh](https://arghya.dev) Β· [GitHub](https://github.com/uiuxarghya)
|