Abbreviation
stringlengths 1
11
| Expansion
stringlengths 2
89
| IsWord
bool 2
classes |
---|---|---|
*S* | smile | false |
*W* | wink | false |
.02 | My two cents worth | false |
10M | Ten man as in ten man squad in online gaming | false |
10Q | Thank you | false |
10X | Thanks | false |
121 | One-to-one | false |
1337 | elite | false |
143 | I love you | false |
1432 | I love you too | false |
14AA41 | One for all, and all for one | false |
182 | I hate you | false |
19 | Zero hand | false |
1CE | Once | false |
1DR | I wonder | false |
1NAM | One in a million | false |
1TG, 2TG | 1 to go or 2 to go | false |
1UP | extra life | false |
2 | to | true |
20 | location | false |
2B | To be | false |
2EZ | Too easy | false |
2G2BT | Too good to be true | false |
2M2H | Too much too handle | false |
2MI | Too much information | false |
2MOR | Tomorrow | false |
2MORO | Tomorrow | false |
2N8 | Tonight | false |
2NTE | Tonight | false |
4 | for | true |
404 | I don’t know | false |
411 | information | false |
420 | Lets get high | false |
459 | I love you | false |
4AO | For adults only | false |
4COL | For crying out loud | false |
4EAE | Forever and ever | false |
4EVA | Forever | false |
4NR | Foreigner | false |
4SALE | For sale | false |
511 | Too much information | false |
555 | Crying | false |
55555 | Crying your eyes out | false |
6Y | Sexy | false |
7K | Sick, really cool | false |
81 | Hells Angels | false |
831 | I love you | false |
86 | Over | false |
88 | Bye-bye | false |
9 | Parent is watching | false |
;S | Hmm | false |
<3 | Love | false |
<3333 | Love | false |
?4U | I have a question for you | false |
@TEOTD | At the end of the day | false |
A/N | Author’s note | false |
A/S/L | Age/sex/location | false |
A3 | Anytime, anywhere, anyplace | false |
AA | Alcoholics Anonymous | true |
AAF | As a matter of fact | false |
AAK | Asleep at keyboard | false |
AAMOF | As a matter of fact | false |
AAMOI | As a matter of interest | false |
AAP | Always a pleasure | false |
AAR | At any rate | false |
AAS | Alive and smiling | false |
AASHTA | As always, Sheldon has the answer | false |
AATK | Always at the keyboard | false |
AAYF | As always, your friend | false |
ABBR | abbreviation | false |
ABC | Already been chewed | false |
ABD | Already been done | false |
ABT | About | false |
ABT2 | About to | false |
ABTA | Good-bye | false |
ABU | All bugged up | true |
AC | Acceptable content | false |
ACC | Anyone can come | false |
ACD | ALT, CONTROL, DELETE | false |
ACDNT | Accident | false |
ACE | marijuana cigarette | true |
ACK | Acknowledge | false |
ACPT | Accept | false |
ACQSTN | Acquisition | false |
ADAD | Another day, another dollar | true |
ADBB | All done, bye-bye | false |
ADD | Address | true |
ADDY | Address | false |
ADIH | Another day in hell | false |
ADIP | Another day in paradise | false |
ADMIN | Administrator | false |
ADMINR | Administrator | false |
ADN | Any day now | false |
ADR | Address | false |
AE | Area effect | true |
AEAP | As early as possible | false |
AF | April Fools | false |
AFAIAA | As far as I am aware | false |
AFAIC | As far as I am concerned | false |
AFAIK | As far as I know | false |
End of preview. Expand
in Dataset Viewer.
Dataset Card for TXT/SMS Abbreviations
1539 sms/text speak abbreviations. Note we have parsed through NLTK to give a field of whether its generally recognised a whole word. NB: Numbers are NOT noted as words. Be careful with numbers like 4 2 etc in your training data
Dataset Details
Dataset Description
A curated list of abbreviations commonly used in text messages and gaming chat and other places. We have tried to remove explanations and explicitly put a full expansion of the abbreviation. Be careful - some items are whole words already.
- Curated by: Will Wade
- Language(s) (NLP): English
- License: Apache-2
Uses
Use as a training set for abbreviations or as part of a GEC task
import csv
# Load abbreviations and their expansions from sms.csv into a dictionary
abbreviations_dict = {}
with open('sms.csv', mode='r', encoding='utf-8') as infile:
reader = csv.reader(infile, delimiter=',')
next(reader, None) # Skip the header if present
for row in reader:
if len(row) >= 3:
abbreviation = row[0].strip().upper()
expansion = row[1].strip()
is_word = row[2].strip().lower() in ['true', 'yes', '1'] # Convert to boolean
abbreviations_dict[abbreviation] = (expansion, is_word)
else:
print(f"Skipping malformed row: {row}")
- Downloads last month
- 54