TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Could you train a chatbot like a GAN?

2 点作者 julianbuse将近 3 年前
I was reading something about how google's new chatbot fails the turing test when you try to elicit machine behaviour from it. Could one train a chatbot that passes the turing test by concurrently training two nets, one that is the chatbot and another that detects whether it's a chatbot or a real conversation? I inagine that this should work theoretically, but I'm by no means an expert.

2 条评论

usrbinbash将近 3 年前
&gt; and another that detects whether it&#x27;s a chatbot or a real conversation?<p>Problem is: How would it do that? In order to for a machine to accurately decide whether its conversation partner is a human or another machine, it would require a model that already accurately understands the difference.<p>So it&#x27;s basically a hen-and-egg problem; In order to make the Discriminator for a GAN that should pass the Turing test, I need a machine that could already pass the Turing Test.<p>Sure, we could feed it billions of human conversations, and train it to recognize some sort of difference, and that could result in a Generator which somewhat mimics the way human conversation works, but that&#x27;s not what the Turing Test evaluates...when I ask something that is nonsensical like &quot;what does the magnetopause smell like&quot;, and the system simply simulates a human speech pattern along the lines of &quot;i don&#x27;t know, I never tried smelling it&quot;, instead of showing <i>actual understanding about the universe</i> that tells it that the question is absurd, it may fool the Discriminator-Algorithm of the GAN, but its not going to convince humans for long.
shreyshnaccount将近 3 年前
Idk, let&#x27;s try?