For example, I have a string like
"look[+3],panel button layout[+3],feature[+2]it 's very sleek looking with a very good front panel button layout , and it has a great feature set . "
"look[+3]" means that the sentence talks about certain aspect of an item, and [+3] means it is a positive review with score 3.(This is actually from Amazon review dataset.)
I would like to split it like
X: "it 's very sleek looking with a very good front panel button layout , and it has a great feature set ."
Y: [("look", 3), ("panel button layout", 3), ("feature", 2)]