Project idea: A HackerNews or reddit client that displays summaries before you click through.
we have done just that, check it out https://news.ycombinator.com/item?id=33748363
Show HN: Summate.it – Quickly summarize web articles with OpenAI
31–40 of 56 posts
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#32It would be good if these tools labeled their capabilities as extractive or abstractive:
Extractive: extract the most relevant information from a document.
Abstractive: generate new text that captures the most relevant information.
* https://huggingface.co/docs/transformers/tasks/summarization
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#33Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#34The hardest part is dealing with GPT token limits. You can't summarize long form text, where it's most needed.
did a rough implementation myself, works well for articles even 20k tokens. but kind slow because all the additional overlapping runs required. (and more costly)
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#35Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#36Reminds me of the quote "Speed reading is like reading - just without comprehension"
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#37soon writers will be writing summaries to get open ai to expand into articles which readers will have open ai summarize so they can read summaries. ais writing for other ais itsallsotiresome.gif
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#38Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#39Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#40The hardest part is dealing with GPT token limits. You can't summarize long form text, where it's most needed.