Books Dataset

This dataset contains information about popular books from various genres and authors.

File

  • books.jsonl

Columns / Fields

  • id โ€“ unique identifier for each book
  • title โ€“ title of the book
  • author โ€“ author of the book
  • genre โ€“ genre of the book
  • published_year โ€“ year the book was published

Sample Usage

Load the dataset in Python:

import json

books = []
with open("books.jsonl", "r") as f:
    for line in f:
        books.append(json.loads(line))

# Print first 5 books
for book in books[:5]:
    print(book)
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support