Being a scifi geek and AI geek and neuroscience geek for pretty much the past 40 years, I've read countless predictions and scenarios and stories about society's response as "true" AI begins to emerge. So watching it play out for real is creating this bizarre sense of deja vu combined with fascination and frustration and also some anxiety. This article and the comments in this thread are right up that alley. I mean,…
I can't think of any science fiction where th AI is there but not at all reliable. Maybe evil, but not unreliable. It's a failure mode we weren't anticipating. It also might make it next to useless for some real world applications, despite being incredible technology.
I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
351–360 of 368 posts
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#352Being a scifi geek and AI geek and neuroscience geek for pretty much the past 40 years, I've read countless predictions and scenarios and stories about society's response as "true" AI begins to emerge. So watching it play out for real is creating this bizarre sense of deja vu combined with fascination and frustration and also some anxiety. This article and the comments in this thread are right up that alley. I mean,…
I like your take on this but isnt it overly optimistic? I have the feeling that this tech will hit the a wall pretty quickly like driverless car technology. It looks great on the surface but it isn't anything like the kind of sci-fi ai I think we're aiming for. Not in anything but a superficial way at least. It doesnt know when its wrong and just straight up lies constantly inventing all sorts of fantastical stuff. I…
And then there's ChatGPT querying WolframAlpha:
https://writings.stephenwolfram.com/2023/03/chatgpt-gets-its...
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#353Earlier quoted context omitted.
Just wait a few years. Today: "Senior" devs by virtue of knowing the cookbook of, at most, one stack. 2028: "Senior" devs by knowing when GPT-12 output POST when it should have been PUT.
The subject at hand is today, not tomorrow.
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#354Earlier quoted context omitted.
A half working system is good enough for real life tasks when combined and used by and in conjunction with attentive half working human collaborators.
Translators who've been picking up after machine translation for the last decade will tell you that it is not, in fact, useful to them. They get paid half as much as before, but correcting the machine output is as much work as translating from scratch, and sometimes more, since the machine can give results that look good at first glance but are fundamentally incorrect.
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#355Earlier quoted context omitted.
> my instinct is to reach for regexp captures, the solution it came up with is probably a lot faster and easier to read and avoids "now you have two problems”. I don’t write Rust but I think it’s best to trust your instinct here. “Now you have two problems” is a humorous quip and not practical coding advice. Using a regular expression to strip trailing digits from a string will surely result in code that is shorter a…
You might be entirely correct. I noticed a small perf issue with the backwards scanning and had it rewrite it not using rfind("_"). First time I prompted it, though, it didn't actually manage to fix the problem and gave me some mild gaslighting until I told it to explicitly remove the rfind() call. Now I think the result should be comparable to or beat a regexp, but it is getting quite a bit more complex: fn strip_su…
use regex::Regex;
fn strip_suffix_digits(s: &str) -> &str {
let re = Regex::new(r"_\d+$").unwrap();
re.replace(s, "").as_ref()
}
As someone who does not program in Rust I find that quite readable, though I haven’t run it and can’t comment on how it compares outside of LOC. It does depend on the regex crate though.Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#356Earlier quoted context omitted.
I my mind, the AI only needs to be more reliable than the human expert, and doctors and lawyers and other experts are "only human". There is only so much a human can read and remember. There is only so much they can be convinced to change their mind in the face of new evidence. They get tired. They get cranky. They have biases, and fears. Some doctors are just terrible. I think the AI is probably more reliable than t…
Apparently much of the usefulness of ChatGPT comes from human guidance via reinforcement learning. The base model seems to be quite useless, but with only a little bit of human input it becomes deceptively smart.
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#357Earlier quoted context omitted.
It's a bloody calculator and a damn good one (but it can and does go mad). Use it like that and you'll be fine. Have you actually engaged with it in any way? Its free to sign up. By the way, what on earth is an AI booster? Do you really mean "enthusiast"? "My mental model seems to clash with that of the boosters." Please tell us about your mental model, we can't read your mind.
It is very nearly the opposite to a calculator. A calculator gives you exact results for a very small subset of problems (equations). Chat-GPT will give you approximate (and occasionally incorrect) solutions to an extremely wide range of problems. The main problem with AI is that there are only so many problems where an approximate solution is fine, and an incorrect solution is easy to work around. In order for AI to…
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#358Being a scifi geek and AI geek and neuroscience geek for pretty much the past 40 years, I've read countless predictions and scenarios and stories about society's response as "true" AI begins to emerge. So watching it play out for real is creating this bizarre sense of deja vu combined with fascination and frustration and also some anxiety. This article and the comments in this thread are right up that alley. I mean,…
Half the time right is worse than nothing at all.
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#359One complaint he has is "It doesn't know to ask the right questions". Well, the prompt was to give diagnoses, not questions. Ask GPT for the follow up questions first, then the diagnoses. This is fascinating in that, because now the machine speaks human, we subconsciously ascribe human agency to it. This guy was instictively treating it like a colleague, who would naturally ask follow up questions unprompted. But you…
Doctors are absolutely not done. You are forgetting that most of medicine is doing things. Doctors are not limited to theory like lawyers are, for instance. And physical robots are still very far from competing with docs.
Most patients have relatively minor issues that eventually get solved not by "doing things" but by providing some data such as "take this chemical in this dose for a certain amount of time and it should help".
Re: I’m a doctor: Here’s what I found when I asked ChatGPT to diagnose my patients
#360One complaint he has is "It doesn't know to ask the right questions". Well, the prompt was to give diagnoses, not questions. Ask GPT for the follow up questions first, then the diagnoses. This is fascinating in that, because now the machine speaks human, we subconsciously ascribe human agency to it. This guy was instictively treating it like a colleague, who would naturally ask follow up questions unprompted. But you…
There's 0 (zero) chance I'd use a robot doctor over a (qualified, capable) human doctor. None.