Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -36,33 +36,32 @@ English
|
|
36 |
This dataset contains disaggregated "chunks" of text from mid-twentieth century science fiction books and associated metadata. For example:
|
37 |
|
38 |
```
|
39 |
-
{'
|
40 |
-
'
|
41 |
-
'
|
42 |
-
'
|
43 |
-
'
|
44 |
-
'
|
45 |
-
'
|
46 |
-
'
|
47 |
-
'
|
48 |
-
'publisher': 'Berkley Publishing Corp',
|
49 |
-
'pub_date': '1969',
|
50 |
-
'pub_city': 'New York',
|
51 |
-
'lcgft_category': 'Fiction.--lcgft;Fiction.--fast;Science fiction.--lcgft'
|
52 |
}
|
53 |
```
|
54 |
|
55 |
### Data Fields
|
56 |
|
57 |
- **id: int** A unique id for the text
|
58 |
-
- **
|
59 |
-
- **
|
60 |
-
- **
|
61 |
-
- **
|
62 |
-
- **
|
63 |
-
- **
|
|
|
|
|
|
|
|
|
64 |
- **summary: str** A brief summary of the book, if extracted from library records
|
65 |
-
- **publisher: str** The book's publisher, if known
|
66 |
- **pub_date: int** The date on which the book was published (first printing)
|
67 |
- **pub_city: int** The city in which the book was published (first printing)
|
68 |
- **lcgft_category: str** Information from the Library of Congress Genre/Form Terms for Library and Archival Materials, if known
|
|
|
36 |
This dataset contains disaggregated "chunks" of text from mid-twentieth century science fiction books and associated metadata. For example:
|
37 |
|
38 |
```
|
39 |
+
{'ID': 7299,
|
40 |
+
'Title': 'MILLENNIUM,
|
41 |
+
'Author': 'VARLEY',
|
42 |
+
'Pub Year': '1983',
|
43 |
+
'Chapter': 'None',
|
44 |
+
'Chunk': '105',
|
45 |
+
'Text': '. . . . . . / 1958 1976 249 A Ambler, And As Baker Ben Berkley Bogart Bova Bova, By Casablanca DEMON Eric Eugene, Eugene, Goes HOTLINE, Herman Humphrey Hupfeld It John John MILLENNIUM MacQuitty, Millennium, Mister Night OF OPHIUCHI One Oregon Oregon...” Organisation, PERSISTENCE Rank Remember Roy Sam THE THE TITAN, The The Time Titanic, VISION, Varley Varley WIZARD, William a about acknowledgement: also an and and and asked author be began bestselling by by by by by by completed continued course, directed do excellent film final had in in in is is is is, name nothing novel novel novel, octopus of of of of of of pet play produced published rain-shrouded s screenplay sinking song soon that the the the the the the the this time title title to to to to travel trilogy was was with with with with written written ’ “ ”'
|
46 |
+
'Clean Text': 'a ambler and as baker ben berkley bogart bova bova by casablanca demon eric eugene eugene goes hotline herman humphrey hupfeld it john john millennium macquitty millennium mister night of ophiuchi one oregon oregon organisation persistence rank remember roy sam the the titan the the time titanic vision varley varley wizard william a about acknowledgement also an and and and asked author be began bestselling by by by by by by completed continued course directed do excellent film final had in in in is is is is name nothing novel novel novel octopus of of of of of of pet play produced published rain shrouded s screenplay sinking song soon that the the the the the the the this time title title to to to to travel trilogy was was with with with with written written ''
|
47 |
+
'Chunk Word Count': '948',
|
|
|
|
|
|
|
|
|
48 |
}
|
49 |
```
|
50 |
|
51 |
### Data Fields
|
52 |
|
53 |
- **id: int** A unique id for the text
|
54 |
+
- **Title: str** The title of the book from which the text has been extracted
|
55 |
+
- **Author: str** The author of the book from which the text has been extracted
|
56 |
+
- **Pub Year: str** The date on which the book was published (first printing)
|
57 |
+
- **Chapter: int** The chapter in the book from which the text has been extracted
|
58 |
+
- **Chunk: int** Number indicating which "chunk" of text has been extracted (chunks are numbered per book; each book was split by chapter and then into n chunks of approx. 1000 words)
|
59 |
+
- **Text: str** The chunk of text extracted from the book
|
60 |
+
- **Clean Text: str** The chunk of text extracted from the book with lowercasing performed and punctuation, numbers and extra spaces removed
|
61 |
+
- **Chunk Word Count: int** The number of words the chunk of text contains
|
62 |
+
|
63 |
+
To Be Added:
|
64 |
- **summary: str** A brief summary of the book, if extracted from library records
|
|
|
65 |
- **pub_date: int** The date on which the book was published (first printing)
|
66 |
- **pub_city: int** The city in which the book was published (first printing)
|
67 |
- **lcgft_category: str** Information from the Library of Congress Genre/Form Terms for Library and Archival Materials, if known
|