Earlier quoted context omitted.
I did too! See a link elsewhere in this thread.
That is cool, but it doesn't show me the key takeaways like the one in this post (Summate) does. I still have to RTFA after seeing the blurb on your service. It is generally not too far away, but in most cases too short to be useful. Take the following as an example (a post from yesterday): Loss of epigenetic information as a cause of mammalian aging https://www.cell.com/cell/fulltext/S0092-8674(22)01570-7 Autosummar…
Show HN: Summate.it – Quickly summarize web articles with OpenAI
51–56 of 56 posts
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#52Earlier quoted context omitted.
That is cool, but it doesn't show me the key takeaways like the one in this post (Summate) does. I still have to RTFA after seeing the blurb on your service. It is generally not too far away, but in most cases too short to be useful. Take the following as an example (a post from yesterday): Loss of epigenetic information as a cause of mammalian aging https://www.cell.com/cell/fulltext/S0092-8674(22)01570-7 Autosummar…
I guess it boils down to the difference in prompts. Mine is just "Summarize the following article in one sentence: %s\n\n", whereas Summate’s asks for more detail. Also, I’m on text-davinci-002, which tends to produce less verbose output than text-davinci-003.
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#53soon 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
No no no. This is what’s gonna happen: AI will read the article for you and then go buy the advertised products on your behalf.
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#54Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#55The hardest part is dealing with GPT token limits. You can't summarize long form text, where it's most needed.
there is actually a paper by OpenAI themselves on summarizing long document. essentially, break a longer text into smaller chunks, and run a multi-stage sequential summarization. each chunk uses a trailing window of previous chunk as context, and run this recursively. https://arxiv.org/abs/2109.10862 did a rough implementation myself, works well for articles even 20k tokens. but kind slow because all the additional o…
Re: Show HN: Summate.it – Quickly summarize web articles with OpenAI
#56Earlier quoted context omitted.
I didn't try, but it seems GPT-Index and LangChain use techniques to get around prompting length limits?
I tried, they don’t. Seems when they were ranking #1 on HN yesterday, someone made a summary (top comment) of what they are for that isn’t quite correct.