对于 AI 三大模型做了一下测试对比,结论是:
- Bard 在这次擂台赛中,整体的表现优秀,甚至超出了我的预期。
- 仅从本次测试的例子来看,ChatGPT 3.5 已经不是 Bard 的对手了。
- 有点小失望,作为 ChatGPT 的同门兄弟,Claude 在本次测试的所有表现都是差评。这有点出乎我的意料,因为我比较早之前就使用了 Claude ,一开始觉得还不错,没想到现在这么不经打。
对于 AI 三大模型做了一下测试对比,结论是:
1
icyalala Oct 15, 2023
不应该用 ChatGPT4 吗
|
3
99185302 Oct 16, 2023
你要不问一下这三个模型,下面这两段的代码结果是不是一样的
i = 0 j = 0 while i < 3: while j < 3: print('吃饭了') j += 1 print('知道了') i += 1 i = 0 while i < 3: j = 0 while j < 3: print('吃饭了') j += 1 print('知道了') i += 1 |
4
chitanda Oct 16, 2023
https://chat.openai.com/share/d92dc597-0cb7-4e2d-8603-a1362507827e
这是用 gpt4 问的相同的问题,我个人感觉 gpt4 更好。最后俩问题是用了 bing 来搜索。 |