Spaces:
Paused
Paused
Commit ·
6ed3766
1
Parent(s): 41a4cd6
final changes
Browse files
README.md
CHANGED
|
@@ -164,6 +164,9 @@ The system follows a multi-stage pipeline that processes movie data and user cur
|
|
| 164 |
|
| 165 |
### Pipeline Stages
|
| 166 |
|
|
|
|
|
|
|
|
|
|
| 167 |
#### 1. Preprocessing Stage
|
| 168 |
- **Movie Title Processing**: Raw movie titles are converted into semantic embeddings using Mistral AI
|
| 169 |
- **Graph Convolution Enhancement**: Movie embeddings are enriched through Graph Convolution Layers (GCL) that capture user interaction patterns and movie relationships
|
|
|
|
| 164 |
|
| 165 |
### Pipeline Stages
|
| 166 |
|
| 167 |
+
The complete preprocessing pipeline code is available in our GitHub repository:
|
| 168 |
+
🔗 **[Preprocessing Code](https://github.com/RecoFM/HF-hackathon2025)**
|
| 169 |
+
|
| 170 |
#### 1. Preprocessing Stage
|
| 171 |
- **Movie Title Processing**: Raw movie titles are converted into semantic embeddings using Mistral AI
|
| 172 |
- **Graph Convolution Enhancement**: Movie embeddings are enriched through Graph Convolution Layers (GCL) that capture user interaction patterns and movie relationships
|
app.py
CHANGED
|
@@ -13,7 +13,6 @@ from ranking_agent import rank_with_ai
|
|
| 13 |
from scipy.sparse import load_npz
|
| 14 |
from rapidfuzz import process, fuzz
|
| 15 |
import re
|
| 16 |
-
from sklearn.metrics.pairwise import cosine_similarity
|
| 17 |
|
| 18 |
load_dotenv()
|
| 19 |
|
|
@@ -269,7 +268,7 @@ def create_interface():
|
|
| 269 |
Get personalized movie recommendations based on your taste and preferences utilizing zero-shot predicitons from Foundation Recommender!
|
| 270 |
|
| 271 |
**How to use:**
|
| 272 |
-
1. Search and select movies you've enjoyed
|
| 273 |
2. Describe the type of film you are looking for. Consider factors such as genre, length, whether it is animated, etc.
|
| 274 |
3. Adjust the preference weight (α) to balance between your description and movie history
|
| 275 |
4. Get personalized recommendations
|
|
|
|
| 13 |
from scipy.sparse import load_npz
|
| 14 |
from rapidfuzz import process, fuzz
|
| 15 |
import re
|
|
|
|
| 16 |
|
| 17 |
load_dotenv()
|
| 18 |
|
|
|
|
| 268 |
Get personalized movie recommendations based on your taste and preferences utilizing zero-shot predicitons from Foundation Recommender!
|
| 269 |
|
| 270 |
**How to use:**
|
| 271 |
+
1. Search and select movies you've enjoyed
|
| 272 |
2. Describe the type of film you are looking for. Consider factors such as genre, length, whether it is animated, etc.
|
| 273 |
3. Adjust the preference weight (α) to balance between your description and movie history
|
| 274 |
4. Get personalized recommendations
|