File size: 1,003 Bytes
9408787
 
 
 
 
 
 
 
 
 
 
23e9116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: Book Recommender 2
emoji: 🐠
colorFrom: yellow
colorTo: red
sdk: gradio
sdk_version: 5.14.0
app_file: app.py
pinned: false
---

# πŸ“š Book Recommender System

A Gradio-based Book Recommender System that suggests books based on their summaries using **TF-IDF** and **cosine similarity**.

---

## πŸš€ Features
- Upload book datasets (CSV or Excel).
- Process text using **TF-IDF** for feature extraction.
- Compute similarity using **cosine similarity**.
- Get book recommendations based on a selected title.

---

## πŸ“¦ Dependencies and Functionalities

| Library          | Functionality                                      |
|-----------------|--------------------------------------------------|
| `pandas`        | Handling and preprocessing dataset files (CSV, Excel). |
| `scikit-learn`  | Feature extraction (`TfidfVectorizer`) and similarity calculation (`cosine_similarity`). |
| `gradio`        | Creating an interactive UI for file upload and book recommendations. |

---