> asked LLMs to compile list of 10-20 writers considered canon in each decade since 1800, then identify all their notable works and years of publication. After some iterations with coding agents I got over 2,000 works by 200 authors. Wait, so the source data is just LLM hallucinations? It makes sense to use an LLM to build the data collection, but not to build your source data.
LLMs cite. So hope they did their due diligence.
What major works of literature were written after age of 85? 75? 65?
71–80 of 106 posts
Re: What major works of literature were written after age of 85? 75? 65?
#72Earlier quoted context omitted.
Can you filter by "major works only"?
that's kind of what P800 (notable work) is doing, but you can try some approximations to "major work" with "has both an English Wikipedia page and a Goodreads link": ?work wdt:P50 ?author ; wdt:P577 ?publicationDate ; wdt:P8383 ?goodreadsID . ?article schema:about ?work ; schema:isPartOf ; schema:inLanguage "en" .
Re: What major works of literature were written after age of 85? 75? 65?
#73I think this is pretty common across different creative forms albeit with different age ranges but constrained at the higher end. So the greatest physics, maths, poetry and pop music are done by people in their 20s. Literature (esp novels) seems to occupy an older range, perhaps 30s to 50s. Perhaps classical music and philosophy also? I don't know about the visual arts. I interpret it as the former requiring the crea…
I think pop musicians are capable of doing greater works later, but the perception of pop works are so heavily influenced by the image/presentation of the artist that we view the works as lesser. I don't think there is something fundamentally different about pop music that leads to best works being earlier relative to other genres of music beyond that.
If we expand the definition of pop music to all music that isn’t classical/jazz/experimental, etc. then older, more experienced musicians should be able to do quite well. Frank Sinatra honed his craft over the decades. I think the stuff he did in his 40s and 50s is probably his best.
Re: What major works of literature were written after age of 85? 75? 65?
#74Earlier quoted context omitted.
What’s the point of getting the wrong answer quickly? https://news.ycombinator.com/item?id=47587662
Well, we’re just going in circles now. I just said LLMs cite what they find so it’s not going to be the wrong answer if you do your due diligence.
Re: What major works of literature were written after age of 85? 75? 65?
#75Earlier quoted context omitted.
that's kind of what P800 (notable work) is doing, but you can try some approximations to "major work" with "has both an English Wikipedia page and a Goodreads link": ?work wdt:P50 ?author ; wdt:P577 ?publicationDate ; wdt:P8383 ?goodreadsID . ?article schema:about ?work ; schema:isPartOf ; schema:inLanguage "en" .
I don't think that's what they meant by major.
Re: What major works of literature were written after age of 85? 75? 65?
#76Re: What major works of literature were written after age of 85? 75? 65?
#77Re: What major works of literature were written after age of 85? 75? 65?
#78Re: What major works of literature were written after age of 85? 75? 65?
#79Earlier quoted context omitted.
Well, we’re just going in circles now. I just said LLMs cite what they find so it’s not going to be the wrong answer if you do your due diligence.
Do extra work in step 2 because you got lazy in step 1 is not my idea of efficient or complete.
Re: What major works of literature were written after age of 85? 75? 65?
#80This is actually a good fit for a Wikidata SPARQL query you can run here https://query.wikidata.org/ : SELECT ?work ?workLabel ?author ?authorLabel ?publicationDate ?ageAtPublication WHERE { ?author wdt:P569 ?birth . ?author wdt:P570 ?death . ?author wdt:P800 ?work . ?work wdt:P50 ?author ; wdt:P31 wd:Q47461344 ; wdt:P577 ?publicationDate . FILTER(?publicationDate 60) SERVICE wikibase:label { bd:serviceParam wikibase…
This seems like the kind of thing that should be more widely known, and have some good tutorials written for it :)