I've go a question about the name of an NLP task - Splitting up a complex sentence into simple ones. For example, if I have this sentence:
"Input t on the username input box and password input box."
I'd like to split this sentence into simpler sentences:
"Input t on the username input box" "Input t on the password input box"
What would this problem be called? I've tried clause extraction here but I don't want clauses, but rather, fully formed sentences. I've also tried 'sentence simplification' but it exceeds what I'm trying to do, with its lexical simplification and all.
Thanks