luthrabhuvan commited on
Commit
23e9116
·
verified ·
1 Parent(s): 121fcd7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -1
README.md CHANGED
@@ -9,4 +9,29 @@ app_file: app.py
9
  pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  pinned: false
10
  ---
11
 
12
+ # 📚 Book Recommender System
13
+
14
+ A Gradio-based Book Recommender System that suggests books based on their summaries using **TF-IDF** and **cosine similarity**.
15
+
16
+ ---
17
+
18
+ ## 🚀 Features
19
+ - Upload book datasets (CSV or Excel).
20
+ - Process text using **TF-IDF** for feature extraction.
21
+ - Compute similarity using **cosine similarity**.
22
+ - Get book recommendations based on a selected title.
23
+
24
+ ---
25
+
26
+ ## 📦 Dependencies and Functionalities
27
+
28
+ | Library | Functionality |
29
+ |-----------------|--------------------------------------------------|
30
+ | `pandas` | Handling and preprocessing dataset files (CSV, Excel). |
31
+ | `scikit-learn` | Feature extraction (`TfidfVectorizer`) and similarity calculation (`cosine_similarity`). |
32
+ | `gradio` | Creating an interactive UI for file upload and book recommendations. |
33
+
34
+ ---
35
+
36
+
37
+