Dataset Viewer
book_title
stringlengths 1
69
|
---|
Don Quixote
|
Alice's Adventures in Wonderland
|
The Adventures of Huckleberry Finn
|
The Adventures of Tom Sawyer
|
Treasure Island
|
Pride and Prejudice
|
Wuthering Heights
|
Jane Eyre
|
Moby Dick
|
The Scarlet Letter
|
Gulliver's Travels
|
The Pilgrim's Progress
|
A Christmas Carol
|
David Copperfield
|
A Tale of Two Cities
|
Little Women
|
Great Expectations
|
The Hobbit
|
Frankenstein
|
Oliver Twist
|
Uncle Tom's Cabin
|
Crime and Punishment
|
Madame Bovary
|
The Return of the King
|
Dracula
|
The Three Musketeers
|
Brave New World
|
War and Peace
|
To Kill a Mockingbird
|
The Wizard of Oz
|
Les Misérables
|
The Secret Garden
|
Animal Farm
|
The Great Gatsby
|
The Little Prince
|
The Call of the Wild
|
20,000 Leagues Under the Sea
|
Anna Karenina
|
The Wind in the Willows
|
The Picture of Dorian Gray
|
The Grapes of Wrath
|
Sense and Sensibility
|
The Last of the Mohicans
|
Tess of the d'Urbervilles
|
Harry Potter and the Sorcerer's Stone
|
Heidi
|
Ulysses
|
The Complete Sherlock Holmes
|
The Count of Monte Cristo
|
The Old Man and the Sea
|
The Lion, the Witch, and the Wardrobe
|
The Hunchback of Notre Dame
|
Pinocchio
|
One Hundred Years of Solitude
|
Ivanhoe
|
The Red Badge of Courage
|
Anne of Green Gables
|
Black Beauty
|
Peter Pan
|
A Farewell to Arms
|
The House of the Seven Gables
|
Lord of the Flies
|
The Prince and the Pauper
|
A Portrait of the Artist as a Young Man
|
Lord Jim
|
Harry Potter and the Chamber of Secrets
|
The Red and the Black
|
The Stranger
|
The Trial
|
Lady Chatterley's Lover
|
Kidnapped
|
The Catcher in the Rye
|
Fahrenheit 451
|
A Journey to the Center of the Earth
|
Vanity Fair
|
All Quiet on the Western Front
|
Gone with the Wind
|
My Ántonia
|
Of Mice and Men
|
The Vicar of Wakefield
|
A Connecticut Yankee in King Arthur's Court
|
White Fang
|
Fathers and Sons
|
Doctor Zhivago
|
The Decameron
|
Nineteen Eighty-Four
|
The Jungle
|
The Da Vinci Code
|
Persuasion
|
Mansfield Park
|
Candide
|
For Whom the Bell Tolls
|
Far from the Madding Crowd
|
The Fellowship of the Ring
|
The Return of the Native
|
Sons and Lovers
|
Charlotte's Web
|
The Swiss Family Robinson
|
Bleak House
|
Père Goriot
|
End of preview. Expand
in Data Studio
2K Book Titles Dataset
Dataset Description
This dataset contains 2,000 book titles from various genres and time periods, ranging from classic literature to contemporary works. The dataset is designed for natural language processing tasks involving book titles, such as text generation, classification, or recommendation systems.
Dataset Structure
Data Fields
book_title
(string): The title of the book
Data Splits
The dataset contains a single split with 2,000 examples:
Split | Examples |
---|---|
train | 2,000 |
Example Json Schema
{
"title": "Book Schema",
"description": "A schema for a book, including its title, author, and other details.",
"type": "object",
"properties": {
"title": {
"description": "The title of the book.",
"type": "string"
},
"author": {
"description": "The author of the book.",
"type": "string"
},
"publication_year": {
"description": "The year the book was published.",
"type": "integer",
"minimum": 0
},
"isbn": {
"description": "The International Standard Book Number.",
"type": "string",
"pattern": "^(978|979)-\\d{1,5}-\\d{1,7}-\\d{1,6}-\\d$"
},
"genres": {
"description": "A list of genres for the book.",
"type": "array",
"items": {
"type": "string"
},
"minItems": 1
},
"is_available": {
"description": "A boolean indicating if the book is currently available.",
"type": "boolean"
},
"language": {
"description": "The language the book is written in.",
"type": "string"
},
"page_count": {
"description": "The total number of pages in the book.",
"type": "integer",
"minimum": 1
}
},
"required": [
"title",
"author",
"publication_year",
"isbn"
]
}
- Downloads last month
- -