| > Hacker News is not some strange place where the normal rules of discourse don't apply. I assume you are familiar with the function of quotation marks. Language is all about context. I wasn't trying to be deceitful. And on HN I've never seen anyone using quotation marks to quote people. > Writing good documentation is certainly a challenging task. Doctests isn't same as writing documentation. Doctest are the simplest form of documentation. Given function named so and so write API doc + example. It could not even write example that passed syntax check. > Actually, I do this all the time and it works great. Keep practicing! Then you haven't given it interesting/complex enough problems. Also this isn't about practice. It's about its capabilities. > In general, the stochastic parrot argument is oft-repeated but fails to recognize the general capabilities of machine learning. I gave it write YAML parser given Yaml org spec, and it wrote following struct: enum Yaml {
Scalar(String),
List(Vec<Box<Yaml>>),
Map(HashMap<String, Box<Yaml>>),
}
This is the stochastic parrot in action. Why? Because it tried to pass of JSON like structure as YAML.Whatever LLM's are they aren't intelligent. Or they have attention spans of a fruit fly and can't figure out basic differences. |