ChatGPT is just the brand. I guess you're using GPT-4, but if you're using the default model (GPT-3.5) that would certainly explain below-expectation results.
Mystery solved! The answer to your OP is that the reason anyone can trust ChatGPT for code is that they use a much better model than the one you're using! GPT-3.5 is ancient and way behind GPT-4. In fact, there are now tens of organisations who have developed model classes way ahead of GPT-3.5.
> the reason anyone can trust ChatGPT for code is that they use a much better model than the one you're using! GPT-3.5 is ancient and way behind GPT-4.
Testing that theory now using Bing Copilot GPT-4.
Failed.
unmatched close parenthesis Line: 11, Column: 11, File-Position: 408
Input is:
Translate this to Common Lisp.
def solve(graph):
a = 0
while a < len(graph):
for b in range(len(graph)):
if b > a and graph[a].intersection(graph[b]):
graph[b] = graph[a] | graph[b]
graph.pop(a);a-=1
break
a+=1
return graph
a = [{1, 2}, {4, 5}, {1, 3}, {1, 4}]
print((solve( a )))
Output is:
(defun solve (graph)
(let ((a 0))
(loop while (< a (length graph)) do
(loop for b from 0 below (length graph) do
(when (and (> b a) (intersection (nth a graph) (nth b graph)))
(setf (nth b graph) (union (nth a graph) (nth b graph)))
(setf graph (remove-if (lambda (x) (equal x (nth a graph))) graph))
(decf a)
(return))))
(incf a))
graph))
(let ((a (list (list 1 2) (list 4 5) (list 1 3) (list 1 4))))
(format t "~a~%" (solve a)))
I don't think there's a contradiction between being something that just generates text and being something that does have thought processes and intention.
Yep. Imagine reading ASCII art, verbally, one character at a time, to a dementia patient in a context in which they're not expecting it. They'll probably react negatively.
I don't think your interpretation of the sentence is sensible. The sentence mentions that the host knows what's behind the doors. So, if he is allowed to open the door with the car, the problem would become insoluble and would just be about speculating on the host's personality. And it definitely doesn't support the conclusion that the probabilities become 50/50.
Not logical. It doesn't follow from the assumption that the host would not pose the question "Hey, here's the car, wanna switch?" that the contestant would automatically lose. You could just as well speculate that if the host opened the door to the car the contestant would automatically win the car.
If the format of the game allows him to show the car to the player, how could his personality not enter into it? In every case where the player picks a goat-door, the host will be presented the option to either reveal the car or the goat. I mean, one can imagine various complicated scenarios in which the host might reveal the car exactly 50% of the time in such cases, but none seem like they can be reasonably arrived at.
it turns out that there is in fact no way that his personality could not enter into it, but that was not obvious to me until i did the simulation. even if he chose to reveal the car exactly 50% of the time in such cases, that would be a result of his personality, wouldn't it?