I am considering creating a script to remove exaggerations from input. So:
I am really tired
I am so tired
I am incredibly tired
should output “I am tired”
but:
I am tired so I slept
I am incredible
should stay the same. I notice that CS tags the exaggerations in the first group as ~adverbs except for “really” which is removed as an interjection. How would I implement exaggeration removal in a script?. Would it be by using decodepos or role? I just dont know how they would be used….