Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 457 Bytes
2080fde |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Part of Speech Tag Operations
# Method to get the parent part of speech (VERB) or (NOUN) from a pos tag
# from __future__ import annotations
# def get_parent_pos(pos: str) -> str | None:
def get_parent_pos(pos):
# Get the parent part of speech from a pos tag
if pos.startswith('VB'):
return 'VERB'
elif pos.startswith('NN'):
return 'NOUN'
elif pos.startswith('RB'):
return 'ADVERB'
else:
return None
|