predicting book genre based on book summary
when working with a large amount of books reading every book and trying to figure out what genre it is can be a time consuming task thats why we need to find a way to automate the process of genre labeling.
the dataset was obtained by webscraping "abjjad" using the beautifulsoup python package
| attribute | description |
|---|---|
| Book_title | title of the book |
| Author | author name |
| cover_url | book cover image url |
| genres | list of genres that a book falls under |
| descriptions | book description |
| cover_name | string name of the cover image |
| description_length | the word count of the description |
| genre_count | number of genres that a book has |