uiuxarghya commited on
Commit
5e7fc30
Β·
verified Β·
1 Parent(s): 7a16b87

feat(app/docs): update README.md with enhanced formatting and additional sections

Browse files
Files changed (1) hide show
  1. README.md +39 -3
README.md CHANGED
@@ -6,11 +6,47 @@ colorTo: blue
6
  sdk: streamlit
7
  sdk_version: 1.45.0
8
  app_file: app.py
9
- pinned: false
 
 
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)