Go To:

Paper Title Paper Authors Table Of Contents Abstract References
Home
Report a problem with this paper

Yall should read this! Identifying Plurality in Second-Person Personal Pronouns in English Texts

Authors

Abstract

Distinguishing between singular and plural "you" in English is a challenging task which has potential for downstream applications, such as machine translation or coreference resolution. While formal written English does not distinguish between these cases, other languages (such as Spanish), as well as other dialects of English (via phrases such as "yall"), do make this distinction. We make use of this to obtain distantly-supervised labels for the task on a large-scale in two domains. Following, we train a model to distinguish between the single/plural you, finding that although in-domain training achieves reasonable accuracy (over 77%), there is still a lot of room for improvement, especially in the domain-transfer scenario, which proves extremely challenging. Our code and data are publicly available.

1 Introduction

The second-person personal pronoun (e.g., "you" in English) is used by a speaker when referring to active participants in a dialog or an event. Various languages, such as Spanish, Hebrew, or French, have different words to distinguish between singular "you" (referring to a single participant) and plural "you" (for multiple participants). Traditionally, English has made this distinction as well. The now archaic "thou" indicated singular secondperson, while "you" was reserved for plural uses. The last several hundred years, however, have seen modern formal written English largely abandoning this distinction, conflating both meanings into an ambiguous "all-purpose you" (Maynor, 2000) .

In this work, we are interested in the following Figure 1 : We use two sources for distant-supervision for singular (marked in purple) versus plural (marked in blue) second person pronouns: (a) we find colloquial uses on Twitter, and (b) through alignment with Spanish, which formally distinguishes between the cases.

Figure 1. Not extracted; please refer to original document.

research question: How can we automatically disambiguate between singular and plural "you"? While this topic has received much attention in linguistic literature (Jochnowitz, 1983; Tillery and Bailey, 1998; Maynor, 2000; Haspelmath, 2013; Molina, 2016) , it has been largely unexplored in the context of computational linguistics, despite its potential benefits for downstream natural language processing (NLP) tasks. For example, distinguishing between singular and plural "you" can serve as additional signal when translating between English and a language which formally makes this distinction. See Figure 2 where an error in interpreting a plural "you" in the source English text results in a non-grammatical Hebrew translation. This example can be amended by replacing "you" with the informal "you guys".

Figure 2: An example translation from English to Hebrew (Google Translate, Aug. 21, 2019). The first sentence depicts wrong interpretation of “you” resulting in a non-grammatical Hebrew translation, due to wrong inflections of pronoun and verb (marked in red). Both issues are fixed when changing “you” to “you guys” in English in the second example (marked in green).

To tackle this task, we create two large-scale corpora annotated with distantly-supervised binary labels distinguishing between singular and plural "you" in two different domains (see Figure 1) . First, we regard Twitter as a noisy corpus for informal English and automatically identify speakers who make use of an informal form of the English plural "you", such as "y'all" or "you Google Translate, Aug. 21, 2019) . The first sentence depicts wrong interpretation of "you" resulting in a non-grammatical Hebrew translation, due to wrong inflections of pronoun and verb (marked in red). Both issues are fixed when changing "you" to "you guys" in English in the second example (marked in green). Table 1 : Examples from our two domains. Twitter is informal, includes hashtags, mentions (anonymized here), and plural "you" (e.g., "y'all" in the first example), which we mask as a generic "you" as shown in the second row. In contrast, Europarl is formal and "you" is used for plural (third example), as well as singular uses (last example).

Table 1: Examples from our two domains. Twitter is informal, includes hashtags, mentions (anonymized here), and plural “you” (e.g., “y’all” in the first example), which we mask as a generic “you” as shown in the second row. In contrast, Europarl is formal and “you” is used for plural (third example), as well as singular uses (last example).

guys", which are common in American English speaking communities (Katz, 2016) . We record a plurality binary label, and mask the tweet by replacing these with the generic "you". Second, we use the Europarl English-Spanish parallel corpus (Koehn, 2005) , and identify cases where the formal plural Spanish second-person pronoun aligns with "you" in the English text.

Finally, we fine-tune BERT (Devlin et al., 2018) on each of these corpora. We find that contextual cues indeed allow our model to recover the correct intended use in more than 77% of the instances, when tested in-domain. Out-of-domain performance drops significantly, doing only slightly better than a random coin toss. This could indicate that models are learning surface cues which are highly domain-dependent and do not generalize well.

Future work can make use of our corpus and techniques to collect more data for this task, as well as incorporating similar predictors in down-stream tasks.

2 Task Definition

Given the word "you" marked in an input text, the task of plurality identification is to make a binary decision whether this utterance refers to:

• A single entity, such as the examples in rows 2 or 4 in Table 1 .

• Multiple participants, such as those referred to in the third line in Table 1 .

In the following sections we collect data for this task and develop models for its automatic prediction.

3 Distant Supervision: The Y'All Corpus

Manually collecting data for this task on a largescale is an expensive and involved process. Instead, we employ different techniques to obtain distantly supervised labels in two domains, as elaborated below. These are then randomly split between train (80% of the data), development, and test (10% each). See Table 2 for details about each of these datasets, which we make publicly available.

Table 2: Number of instances in our two corpora. Each of the partitions (train, dev, test) is equally split between plural and singular second-person personal pronouns.

3.1 The Twitter Domain

As mentioned in the Introduction, English speaking communities tend to maintain the singular versus plural "you" distinction by introducing idiosyncratic phrases which specifically indicate a plural pronoun, while reserving "you" for the singular use-case. We operationalize this observation on a large Twitter corpus (Cheng et al., 2010) in the following manner:

• First, we identify speakers who use an informal plural "you" at least once in any of their tweets. 2

• Following, we assume that these users speak an English dialect which distinguishes between singular and plural second-person pronouns, interpreting their "you" as a singular pronoun. See the first two tweets in Table 1 , for an example of these two uses by the same user.

• Finally, we mask out the plural pronoun in each of their tweets by replacing it with a generic "you" (see the second row in Table 1 ). This allows us to test whether models can subsequently rely on contextual cues to recover the original intention.

This process yields about 36K plural instances, which we augment with 36K singular instances from the same users, to obtain a corpus which is balanced between the two classes. Data analysis Our Twitter corpus was composed of U.S. based users, and included geolocations for 36.8K of the plural tweets. This allows for several interesting observations. First, Figure 3 shows the distribution of informal plural "you" phrases in our corpus (before masking). Second, using the tweets geo-location, we can plot the geographical variation in usage. Figure 4 shows the most common term for plural "you" in each state in the continental United States. While most of the U.S. prefers "you guys", southern states (such as Texas or Louisiana) prefer "y'all". Katz (2016) reached similar conclusions through a large-scale online survey. Interestingly, our survey of Twitter usage differs from theirs for several Midwestern states, such as Wyoming or Nebraska.

Figure 3: Histogram distribution of informal plural “you” forms in the development partition of our Twitter corpus.
Figure 4: Variation in the most common phrase used for plural “you” in our Twitter corpus across states in the continental United States.

Quality estimation. We evaluate the assumption we made above (i.e., that users reserve "you" for the singular case) by asking an English nativespeaker to annotate a sample of 100 singular "you" instances from our Twitter corpus. In 70% of the instances, the annotator agreed that these indeed represent a singular "you", leaving the other 30% to either ambiguous or inconsistent usage (i.e., sometimes "you" is used for a plural use-case). Overall, while there is a non-negligible amount of noise in the Twitter domain, in Section 5 we show that the signal is strong enough for models to pick up on and achieve good accuracy.

3.2 The Europarl Domain

Another method to obtain distant supervision for this task is through an alignment with a language which distinguishes between the two usages of the pronoun. To that end, we use the Spanish and English parallel texts available as part of Europarl (Koehn, 2005) , a large corpus containing aligned sentences from meeting transcripts of the European parliament.

As these texts originate from a formal setting, we expect to find much less colloquial phrases. Indeed, the term "y'all" does not appear at all, while "you guys" appears only twice in about 2 million sentences. Instead, we rely on the gold alignment with Spanish sentences, which have a formal plural "you" -ustedes or vosotros. We find Spanish sentences which have exactly one plural "you" and which aligns with an English sentence containing exactly one "you". This process yields about 7K sentences which we mark with a "plural" label. Similarly to the Twitter domain, we augment these with the same amount of singular "you", found in the same manner; by tracing a Spanish singular "you" to a single English "you". This process yields a balanced binary corpus.

Quality Estimation

We sampled 100 instances from the Europarl domain to estimate the quality of our binary labels. Unlike the Twitter domain, in Europarl we rely on gold alignments and cleaner text. As a result, we found that about 90% of the labels agree with a human annotator, while the remaining 10% were ambiguous.

3.3 Discussion

The distinction between plural and singular "you" in English is an instance of a more general phenomenon. Namely, semantic features are expressed in varying degrees of lexical or grammatical explicitness across different languages.

For instance, languages vary in grammatical tense-marking (Wolfram, 1985) , from languages with no morphological tense, such as Mandarin (Wang and Sun, 2015) with 9 different tense-marking morphological inflections (Comrie, 1985) . Similarly, languages vary in gender-marking in pronouns, from genderless Turkish, to languages with six genders or more (Awde and Galaev, 1997) .

The two data collection methods we presented here, finding colloquial explicit utterances on social media, and alignment with another language, may also be applicable to some of these phenomena and present an interesting avenue for future work.

4 Model

We fine-tune the BERT-large pretrained embeddings (Devlin et al., 2018) 3 on the training partition of each of our domains (Twitter and Europarl), as well as on a concatenation of both domains (Joint). We then classify based on the [CLS] token in each of these instances. We use a fixed learning rate of 2e − 5 and a batch size of 24. Training for 10 Epochs on a Titan X GPU took about 3 hours for the Twitter domain, 2 hours for the Europarl domain and roughly 5 hours for the Joint model.

5 Evaluation

We test models trained both in and out of domain for both parts of our dataset (Twitter and Europarl) as well as a joint model, trained on both parts of the dataset. We use accuracy (percent of correct predictions), as our dataset is binary and both classes are symmetric and evenly distributed. Our main findings are shown in Table 3 . Following, several observations can be made.

Table 3: Accuracy (percent of correct predictions) of our fine-tuned BERT model, tested both in- and out-ofdomain. Rows indicate train corpus, columns indicate test corpus. Bold numbers indicate best performance on test corpus.

In-domain performance does significantly better than chance. For both domains, BERT achieves more than 77% accuracy. Indicating that the contextual cues in both domains are meaningful enough to capture correlations with plural and singular uses.

Out-of-domain performance is significantly degraded. We see significant drop in performance when testing either model on the other part of the dataset. Both models do only slightly better than chance. This may indicate that the cues for plurality are vastly different between the two domains, probably due to differences in vocabulary, tone, or formality.

Training jointly on the two domains maintains good performance, but does not improve upon it. A model trained on both the Twitter and Europarl domains achieves the in-domain performance of each of the individual in-domain models, but does not improve over them. This may indicate that while BERT is expressive enough to model both domains, it only picks up on surface cues in each and does not generalize across domains. As a result, robustness is questionable for out-of-domain instances.

6 Related Work

Several previous works have touched on related topics. A few works developed models for understanding the second-person pronoun within coreference resolution frameworks (Purver et al., 2009; Zhou and Choi, 2018) . Perhaps most related to our work is Gupta et al. (2007) , who have tackled the orthogonal problem of disambiguation between generic (or editorial) "you" and referential "you".

To the best of our knowledge, we are the first to deal with plurality identification in second-person personal pronouns in English.

7 Conclusion And Future Work

We presented the first corpus for the identification of plurality in second-person personal pronouns in English texts. Labels were collected on a large scale from two domains (Twitter and Europarl) using different distant-supervision techniques.

Following, a BERT model was fine-tuned on the labeled data, showing that while models achieve reasonable in-domain performance, they significantly suffer from domain transfer, degrading per-formance close to random chance. Interesting avenues for future work may be to extend this data to new domains, develop more complex models for the task (which may achieve better cross-domain performance), and integrating plurality models in downstream tasks, such as machine translation or coreference resolution.

We use a fixed list of informal plural "you", including you guys, y'all and youse.See https: //en.wikipedia.org/wiki/You#Informal_ plural_forms for the complete list.

Using HuggingFace's implementation: https://github.com/huggingface/ pytorch-transformers