Earlier quoted context omitted.
> I don't think there is an ML which could extract the take aways from each section There's plenty of abstractive and extractive methods for text summarization. In fact, that's what I'm working on right now, is to develop a news article summarization system for longer articles. If you're interested in learning more, there's an excellent survey paper on ArXiv: https://arxiv.org/abs/1812.02303
is there any working demo to play with? I am not into ML and won't read the whole paper... I expect these sort of mechanisms to make some weighting of the morphemes and sentences and replicate the top score ones whereas a human made summary is based on context and semantics given by humans (for example, the relevant part might be only relevant during the current zeitgeist or for some peoples bias)
The disadvantage of using only token-based attention is that it's still not enough context for large spans of text (> 1000 tokens), and I'm actually having this issue now in my work. That's where things like applying attention to chunks of text is helpful.
I'm still trying to fully understand attention mechanisms, so I hope this comment made sense.