nicholasKluge commited on
Commit
2f52650
1 Parent(s): c97a1a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -69
README.md CHANGED
@@ -24,80 +24,18 @@ configs:
24
  - split: train
25
  path: data/train-*
26
  license: other
 
 
 
27
  ---
28
- # Stanford Encyclopedia Philosophy
29
 
30
- ## Overview
31
 
32
- The Stanford Encyclopedia of Philosophy (SEP) is a dynamic reference work, including over 1,770 entries written by top scholars in the field of philosophy.
33
- This dataset contains the full text of all articles contained within the SEP.
34
- Every row possesses information related to the original page (URL), the subject of the page (Category), and the text of the page (Text).
35
- This dataset can be used for NLP applications like text mining, classification, and generation.
36
-
37
- ## Dataset Details
38
-
39
- We will create a text dataset using the articles from the [`Stanford Encyclopedia of Philosophy`](https://plato.stanford.edu/)
40
-
41
-
42
- ```
43
- Title: The Stanford Encyclopedia of Philosophy
44
- https://plato.stanford.edu/
45
- Publisher:
46
- The Metaphysics Research Lab
47
- Philosophy Department
48
- Stanford University
49
- Stanford, CA 94305-4115
50
- International Standard Serial Number: ISSN 1095-5054
51
- ```
52
- - Dataset Name: [stanford-encyclopedia-philosophy](https://huggingface.co/datasets/AiresPucrs/stanford-encyclopedia-philosophy)
53
- - Language: English
54
- - Total Size: 182,531 demonstrations
55
-
56
- ## Contents
57
-
58
- The dataset consists of a data frame with the following columns:
59
-
60
- - metadata
61
- - label
62
- - category
63
-
64
- ```bash
65
- {
66
- "metadata": https://plato.stanford.edu/entries/abduction/,
67
- "text": "See also the entry on scientific discovery, in particular the section on discovery as abduction.",
68
- "category": abduction
69
- }
70
- ```
71
-
72
- ## How to use
73
 
74
  ```python
75
  from datasets import load_dataset
76
 
77
- dataset = load_dataset("AiresPucrs/stanford-encyclopedia-philosophy", split='train')
78
-
79
- ```
80
-
81
- ## License
82
-
83
- The Stanford Encyclopedia of Philosophy Dataset is licensed under the [Other](https://plato.stanford.edu/info.html).
84
-
85
- # Cite as
86
-
87
- ```
88
- @misc{teenytinycastle,
89
- doi = {10.5281/zenodo.7112065},
90
- url = {https://github.com/Nkluge-correa/TeenyTinyCastle},
91
- author = {Nicholas Kluge Corr{\^e}a},
92
- title = {Teeny-Tiny Castle},
93
- year = {2024},
94
- publisher = {GitHub},
95
- journal = {GitHub repository}
96
- }
97
  ```
98
-
99
- **Disclaimer**
100
-
101
- This dataset is provided as is, without any warranty or guarantee of its accuracy or suitability for any purpose.
102
- The creators and contributors of this dataset are not liable for any damages or losses arising from its use.
103
- Please review and comply with the licenses and terms of the original datasets before use.
 
24
  - split: train
25
  path: data/train-*
26
  license: other
27
+ pretty_name: Stanford Encyclopedia Philosophy
28
+ size_categories:
29
+ - 100K<n<1M
30
  ---
31
+ # Stanford Encyclopedia Philosophy (Teeny-Tiny Castle)
32
 
33
+ This dataset is part of the tutorial tied to the [Teeny-Tiny Castle](https://github.com/Nkluge-correa/TeenyTinyCastle), an open-source repository containing educational tools for AI Ethics and Safety research.
34
 
35
+ ## How to Use
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  ```python
38
  from datasets import load_dataset
39
 
40
+ dataset = load_dataset("AiresPucrs/stanford-encyclopedia-philosophy", split = 'train')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  ```