rohitmsan commited on
Commit
0f3dfa3
·
verified ·
1 Parent(s): ded0fe2

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -14
README.md CHANGED
@@ -1,14 +1,23 @@
1
- ---
2
- title: Book Recommendation System
3
- emoji: 📈
4
- colorFrom: purple
5
- colorTo: gray
6
- sdk: gradio
7
- sdk_version: 5.12.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: book recomendation system
12
- ---
13
-
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
1
+ # Content-Based Book Recommender System
2
+
3
+ This project provides a modular implementation of a content-based book recommendation system using Python. It uses TF-IDF vectorization and cosine similarity to recommend books based on their summaries.
4
+
5
+ ## Features
6
+ - Load and preprocess datasets
7
+ - Compute similarity between books based on their summaries
8
+ - Generate content-based recommendations
9
+
10
+ ## Files
11
+ - `app.py`: Entry UI for the recommendation system
12
+ - `data_loader.py`: Handles data loading and preprocessing
13
+ - `recommender.py`: Core recommendation logic
14
+ - `requirements.txt`: Lists dependencies
15
+
16
+ ## Dependencies
17
+ - `pandas`: For data manipulation
18
+ - `scikit-learn`: For TF-IDF vectorization and cosine similarity calculation
19
+
20
+ ## Usage
21
+ 1. Install dependencies:
22
+ ```bash
23
+ pip install -r requirements.txt