hugfaceguy0001 commited on
Commit
1076853
1 Parent(s): f29dd07

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -1
README.md CHANGED
@@ -44,4 +44,25 @@ dataset_info:
44
  ---
45
  # Dataset Card for "stanford_plato"
46
 
47
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
  ---
45
  # Dataset Card for "stanford_plato"
46
 
47
+ ## Description
48
+
49
+ This is a collection of articles in the Stanford Encyclopedia of Philosophy (https://plato.stanford.edu/index.html).
50
+
51
+ This dataset includes 1776 articles, each explaining one philosophy term/people/topic. It has 8 features:
52
+
53
+ - shorturl: The shorturl for the article. For example, the shorturl 'abduction' correspond to the page https://plato.stanford.edu/entries/abduction/
54
+ - title: The title of the article.
55
+ - pubinfo: The publication information.
56
+ - **preamble**: The preface text of the article. The data is a list, each item of the list is a paragraph of the data. I choose not to break the paragraph structure. Certainly, you can merge them by, for example, ''.join(data['preamble'])
57
+ - toc: Table of contents. Also represented as list. Each item is a dictionary, the 'content_title' is the main content title, and the 'sub_toc' is a list of subcontent titles.
58
+ - **main_text**: The main text of the article.
59
+ The data is also a list, each item represents a section of the article.
60
+ Each item is a dictionary, 'section_title' is the title of the section, 'main_content' is a list of paragraphs before subsections,
61
+ 'subsections' is a list of subsections, each item is also a dictionary, has its own title 'subsection_title' and list of paragraphs 'content'.
62
+ - bibliography: list of bibliography.
63
+ - related_entries: list of entries related to the current entry.
64
+
65
+ ## Copyright and license
66
+
67
+ See the information at the offical website: https://plato.stanford.edu/info.html#c
68
+ This is not an official release. May be deleted later if violates copyright. The responsibility of not abusing is on the user.