Books Dataset
This dataset contains information about popular books from various genres and authors.
File
books.jsonl
Columns / Fields
idโ unique identifier for each booktitleโ title of the bookauthorโ author of the bookgenreโ genre of the bookpublished_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)
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
๐
Ask for provider support