troianea commited on
Commit
d2ca2ef
·
verified ·
1 Parent(s): ef9deaa

Update Readme.md

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md CHANGED
@@ -1,3 +1,61 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ language:
4
+ - en
5
+ size_categories:
6
+ - 10K<n<100K
7
  ---
8
+
9
+ # Dataset Description
10
+
11
+ CLAUSE-ATLAS is a corpus that contains six books annotated with narrative categories at the level of clauses.
12
+ The books (i.e., Alice's Adventures in Wonderland, The Adventures of Pinocchio, Peter Pan, Pride and Prejudice, Frankenstein, and The Great Gatsby) were extracted from [Project Gutenberg](https://www.gutenberg.org).
13
+ Clauses were obtained by chunking the books with ChatGPT (gpt-3.5-turbo, 16k tokens context), called via the official [OpenAI](https://openai.com)’s API and istructed with the prompt reported in `./clauseatlas_notebook.ipynb`.
14
+
15
+ # Clause Annotation
16
+ The clauses in CLAUSE-ATLAS are annotated as expressing one of three types of information:
17
+ * __a subjective experience__, internal to the character in the novel (e.g., thoughts, memories, perceptions),
18
+ * __an objective event__ that happens in the external narrative world;
19
+ * __additional information__ about the characters or the narrative world.
20
+
21
+ Clauses marked as subjective experiences were further associated to the corresponding characters.
22
+
23
+ ## Annotation Setup
24
+ Clauses were annotated in two setups: with the help of humans, and with the use of different instructions to prompt ChatGPT (gpt-3.5-turbo, 16k tokens context).
25
+
26
+ |*Setup*|*Annotators*|*Data*|*Instructions*|
27
+ |---|---|---|---|
28
+ |Human Annotation|3 people|First chapter of Alice's Adventures in Wonderland,<br>The Adventures of Pinocchio, and The Great Gatsby|Prompts and function calling as in `./clauseatlas_notebook.ipynb`|
29
+ |ChatGPT Annotation|3 prompts|Whole corpus|Stored in `./Human_Guidelines.pdf`|
30
+
31
+ NOTE: The task of identifying the characters of subjective experiences was performed by all humans. In the automatic setup, this layer of annotation was obtained (instructions as in `./clauseatlas_notebook.ipynb`) on the clauses labeled with one prompt only.
32
+
33
+
34
+
35
+ # Data Fields
36
+
37
+ |*Field*|*Type*|*Description*|
38
+ |---|---|---|
39
+ |book|str|Title of the book containing a given clause|
40
+ |chapter_id|i64|Number of the book chapter containing the clause.|
41
+ |paragraph_id|i64|Number of the paragraph containing the clause.|
42
+ |clause_number|i64|ID of the clause in the corpus.|
43
+ |text|str|Clause text.|
44
+ |prompt_one<br>prompt_two<br>prompt_three|str|Annotations obtained with the three prompts. S: subjective experience. E: external events. C: contextual information.|
45
+ |human_one<br>human_two<br>human_three|str|Annotations produced by the three humans.|
46
+ |experiencer_prompt_one|str|Characters involved in the subjective experiences identified by prompt_one.|
47
+ |experiencer_human_one<br>experiencer_human_two<br>experiencer_human_three|str|Characters involved in the subjective experiences identified by the three annotators.|
48
+
49
+
50
+ # Copyright and License
51
+ The books in CLAUSE-ATLAS are copyright-free. The corpus is licensed under the non-commercial [CC 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en) license. If you use this corpus,
52
+ please cite us as follows:
53
+
54
+ <pre><p>@inproceedings{TroianoVossen2024,
55
+ author = {Enrica Troiano and Piek Vossen},
56
+ title = {CLAUSE-ATLAS: A Corpus of Narrative Information
57
+ to Scale Up Computational Literary Analysis},
58
+ booktitle = {Proceedings of the the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING)},
59
+ year = {2024},
60
+ address = {Turin, Italy}
61
+ }</p></pre>