dardem commited on
Commit
4f942f9
1 Parent(s): d38e839

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -80,6 +80,27 @@ batch = tokenizer.encode('ты супер', return_tensors='pt')
80
  model(batch)
81
  ```
82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
83
 
84
  ## Licensing Information
85
 
 
80
  model(batch)
81
  ```
82
 
83
+ ## Citation
84
+
85
+ ```
86
+ @inproceedings{dementieva-etal-2023-detecting,
87
+ title = "Detecting Text Formality: A Study of Text Classification Approaches",
88
+ author = "Dementieva, Daryna and
89
+ Babakov, Nikolay and
90
+ Panchenko, Alexander",
91
+ editor = "Mitkov, Ruslan and
92
+ Angelova, Galia",
93
+ booktitle = "Proceedings of the 14th International Conference on Recent Advances in Natural Language Processing",
94
+ month = sep,
95
+ year = "2023",
96
+ address = "Varna, Bulgaria",
97
+ publisher = "INCOMA Ltd., Shoumen, Bulgaria",
98
+ url = "https://aclanthology.org/2023.ranlp-1.31",
99
+ pages = "274--284",
100
+ abstract = "Formality is one of the important characteristics of text documents. The automatic detection of the formality level of a text is potentially beneficial for various natural language processing tasks. Before, two large-scale datasets were introduced for multiple languages featuring formality annotation{---}GYAFC and X-FORMAL. However, they were primarily used for the training of style transfer models. At the same time, the detection of text formality on its own may also be a useful application. This work proposes the first to our knowledge systematic study of formality detection methods based on statistical, neural-based, and Transformer-based machine learning methods and delivers the best-performing models for public usage. We conducted three types of experiments {--} monolingual, multilingual, and cross-lingual. The study shows the overcome of Char BiLSTM model over Transformer-based ones for the monolingual and multilingual formality classification task, while Transformer-based classifiers are more stable to cross-lingual knowledge transfer.",
101
+ }
102
+ ```
103
+
104
 
105
  ## Licensing Information
106