yemen2016 commited on
Commit
fbd6e56
1 Parent(s): eef5cb2

Update README.md

Browse files

dataset description

Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -1,3 +1,40 @@
1
  ---
2
  license: cc-by-nc-nd-4.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-nd-4.0
3
  ---
4
+ # Sentiment Classification of Historical Literary in Danish and Norwegian Texts
5
+ ## Description
6
+ This project describes a study on sentiment classification in literary analysis of 19th-century Scandinavian novels by female authors. We create a dataset, train and evaluate sentiment classification methods, and use pre-trained language models to confirm and contest a literary hypothesis that the writing of female authors in that period was characterized by negative sentiment. The dataset and trained models are expected to be valuable for future analysis of historical Danish and Norwegian literary texts.
7
+
8
+ ## Dataset
9
+ The dataset is uploaded to the `dataset` directory and is structured as follows:
10
+
11
+ 1. `train_set.txt`: TXT file containing the training set with annotated text for sentiment analysis.
12
+ 2. `dev_set.txt`: TXT file containing the development set with annotated text for sentiment analysis.
13
+ 3. `test_set.txt`: TXT file containing the testing set with annotated text for sentiment analysis.
14
+
15
+
16
+ Each file contains two columns (tab separated) where the first column is the sentence and the second column is the sentimen annoation (1=positive, 0=neutral, and 2=negative)
17
+
18
+ ## Usage
19
+ To use the dataset and code, follow these steps:
20
+
21
+ 1. Clone or download this GitHub repository.
22
+ 2. Access the dataset files in the `dataset` directory and the Python code file.
23
+ 3. Use the dataset files for training, development, and testing of sentiment analysis models in your research or applications.
24
+ 4. Run the Python code files using your preferred IDE or Python environment to understand how to load, preprocess, and analyze the historical text data.
25
+
26
+ ## License
27
+ The dataset and code in this repository are released under the [Creative Commons Attribution 4.0 International license](http://creativecommons.org/licenses/by/4.0/).
28
+
29
+ ## Citation
30
+ For more details about the sentiment annoatation and classification, please read further in [the following paper](https://openreview.net/forum?id=dszKbb2GH3):
31
+
32
+ ```
33
+ @inproceedings{allaith2023sentiment,
34
+ title={Sentiment Classification of Historical Literary in {D}anish and {N}orwegian Texts},
35
+ author={Ali Al-Laith and Kirstine Nielsen Degn and Alexander Conroy and Bolette S. Pedersen and Jens Bjerring-Hansen and Daniel Hershcovich},
36
+ booktitle={The 24rd Nordic Conference on Computational Linguistics},
37
+ year={2023},
38
+ url={https://openreview.net/forum?id=dszKbb2GH3}
39
+ }
40
+ ```