<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>OpenAI &#8211; 编码无悔 /  Intent &amp; Focused</title>
	<atom:link href="https://www.codelast.com/tag/openai/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.codelast.com</link>
	<description>最优化之路</description>
	<lastBuildDate>Wed, 17 Sep 2025 14:29:50 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>[原创] 用Whisper.cpp在本地(离线)把mp3音频转成中文</title>
		<link>https://www.codelast.com/%e5%8e%9f%e5%88%9b-%e7%94%a8whisper-cpp%e5%9c%a8%e6%9c%ac%e5%9c%b0%e7%a6%bb%e7%ba%bf%e6%8a%8amp3%e9%9f%b3%e9%a2%91%e8%bd%ac%e6%88%90%e4%b8%ad%e6%96%87/</link>
					<comments>https://www.codelast.com/%e5%8e%9f%e5%88%9b-%e7%94%a8whisper-cpp%e5%9c%a8%e6%9c%ac%e5%9c%b0%e7%a6%bb%e7%ba%bf%e6%8a%8amp3%e9%9f%b3%e9%a2%91%e8%bd%ac%e6%88%90%e4%b8%ad%e6%96%87/#respond</comments>
		
		<dc:creator><![CDATA[learnhard]]></dc:creator>
		<pubDate>Wed, 17 Sep 2025 14:29:50 +0000</pubDate>
				<category><![CDATA[AI]]></category>
		<category><![CDATA[原创]]></category>
		<category><![CDATA[ASR]]></category>
		<category><![CDATA[mp3转中文]]></category>
		<category><![CDATA[OpenAI]]></category>
		<category><![CDATA[whisper.cpp]]></category>
		<category><![CDATA[Whisper模型]]></category>
		<category><![CDATA[语音识别]]></category>
		<category><![CDATA[语音转文字]]></category>
		<guid isPermaLink="false">https://www.codelast.com/?p=14183</guid>

					<description><![CDATA[<p>如果你有把mp3音频转成中文文本、并且不想调用任何云端API的需求，那么本文提供了一个可行的方案。<br />
OS：Ubuntu 20.04 LTS（MacOS类似可用）<br />
<span id="more-14183"></span></p>
<div style="text-align: center;">
	<img decoding="async" alt="audio to text" src="https://www.codelast.com/wp-content/uploads/2025/09/audio_to_text.png" style="width: 600px; height: 528px;" /></div>
<p>
我们首先要知道几个背景知识：<br />
<span style="color:#ff0000;">➤</span> whisper.cpp 是一个开源的 C/C++ 实现，用于运行 OpenAI 的 Whisper 模型。Whisper 是一种先进的自动语音识别（Automatic Speech Recognition, ASR）神经网络模型，能够将音频转换为文本。它支持多种语言，识别效果精准，并且可以完全离线运行，无需互联网连接。这个项目特别适合嵌入到各种应用程序中，因为它是轻量级的实现，可以在 CPU 上高效运行。<br />
<span style="color: rgb(255, 0, 0);">➤</span>&#160;whisper.cpp-cli 是对 whisper.cpp 命令行工具的 Python 封装。<br />
<span style="color:#ff0000;">➤</span>&#160;OpenAI 的 Whisper 模型是一个先进的自动语音识别系统。它是基于 Transformer 架构的神经网络模型，主要用于将音频转换为文本。Whisper 由 OpenAI 开源开发，使用了大规模的多语言数据集进行训练（包括 68 万小时的音频数据，支持 98 种语言），因此具有出色的准确性和鲁棒性，能够处理多种口音、背景噪音和技术术语。<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a>&#8230; <a href="https://www.codelast.com/%e5%8e%9f%e5%88%9b-%e7%94%a8whisper-cpp%e5%9c%a8%e6%9c%ac%e5%9c%b0%e7%a6%bb%e7%ba%bf%e6%8a%8amp3%e9%9f%b3%e9%a2%91%e8%bd%ac%e6%88%90%e4%b8%ad%e6%96%87/" class="read-more">Read More </a></p>]]></description>
										<content:encoded><![CDATA[<p>如果你有把mp3音频转成中文文本、并且不想调用任何云端API的需求，那么本文提供了一个可行的方案。<br />
OS：Ubuntu 20.04 LTS（MacOS类似可用）<br />
<span id="more-14183"></span></p>
<div style="text-align: center;">
	<img decoding="async" alt="audio to text" src="https://www.codelast.com/wp-content/uploads/2025/09/audio_to_text.png" style="width: 600px; height: 528px;" /></div>
<p>
我们首先要知道几个背景知识：<br />
<span style="color:#ff0000;">➤</span> whisper.cpp 是一个开源的 C/C++ 实现，用于运行 OpenAI 的 Whisper 模型。Whisper 是一种先进的自动语音识别（Automatic Speech Recognition, ASR）神经网络模型，能够将音频转换为文本。它支持多种语言，识别效果精准，并且可以完全离线运行，无需互联网连接。这个项目特别适合嵌入到各种应用程序中，因为它是轻量级的实现，可以在 CPU 上高效运行。<br />
<span style="color: rgb(255, 0, 0);">➤</span>&nbsp;whisper.cpp-cli 是对 whisper.cpp 命令行工具的 Python 封装。<br />
<span style="color:#ff0000;">➤</span>&nbsp;OpenAI 的 Whisper 模型是一个先进的自动语音识别系统。它是基于 Transformer 架构的神经网络模型，主要用于将音频转换为文本。Whisper 由 OpenAI 开源开发，使用了大规模的多语言数据集进行训练（包括 68 万小时的音频数据，支持 98 种语言），因此具有出色的准确性和鲁棒性，能够处理多种口音、背景噪音和技术术语。<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
因此，我们需要安装的是 <a href="https://github.com/charliermarsh/whisper.cpp-cli" target="_blank">whisper.cpp-cli</a>，并且要下载好 Whisper 模型文件，这样就能使用 whisper.cpp-cli 来调用Whisper模型文件进行语音识别了。<br />
为了不影响系统里安装的软件，我们通常都会用micromamba、uv之类的Python包管理器创建一个新的env（环境），然后在里面再安装其他的Python包。这里我们用uv，你也可以用其他的包管理器来创建env。</p>
<blockquote>
<p>
		mkdir whisper<br />
		cd whisper<br />
		uv venv . --python 3.8&nbsp; # 创建一个新环境<br />
		source&nbsp;bin/activate&nbsp; # 激活环境<br />
		uv pip install pip&nbsp; # 安装pip<br />
		pip install whisper.cpp-cli&nbsp; # 安装whisper.cpp-cli</p>
</blockquote>
<p>
这样我们就安装好了相关软件。<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
把 mp3 转成 16 kHz 的 wav 文件：</p>
<blockquote>
<p>
		ffmpeg -y -i /home/codelast/st.mp3 -ar 16000 /home/codelast/st.wav</p>
</blockquote>
<p>注意，16 kHz 是Whisper要求的。</p>
<p>然后我们就可以开始做语音识别了：</p>
<blockquote>
<p>
		&nbsp;whisper-cpp -m ../whisper.cpp/download/x-ggml-model.zh.bin -f /home/codelast/st.wav -l zh --output-txt</p>
</blockquote>
<p>这个命令的参数：<br />
-m：指定使用 x-ggml-model.zh.bin 这个模型来做语音识别（模型文件要提前从 Hugging Face 上下载好）<br />
-f：指定输入文件，对 st.wav 这个音频文件进行语音识别<br />
-l：指定输出语言为中文<br />
--output-txt：直接输出txt文本。<br />
<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
输出内容示例如下：</p>
<blockquote>
<div>
		whisper_init_from_file_with_params_no_state: loading model from &#39;../whisper.cpp/download/x-ggml-model.zh.bin&#39;</div>
<div>
		whisper_model_load: loading model</div>
<div>
		whisper_model_load: n_vocab&nbsp; &nbsp; &nbsp; &nbsp;= 51865</div>
<div>
		whisper_model_load: n_audio_ctx&nbsp; &nbsp;= 1500</div>
<div>
		whisper_model_load: n_audio_state = 768</div>
<div>
		whisper_model_load: n_audio_head&nbsp; = 12</div>
<div>
		whisper_model_load: n_audio_layer = 12</div>
<div>
		whisper_model_load: n_text_ctx&nbsp; &nbsp; = 448</div>
<div>
		whisper_model_load: n_text_state&nbsp; = 768</div>
<div>
		whisper_model_load: n_text_head&nbsp; &nbsp;= 12</div>
<div>
		whisper_model_load: n_text_layer&nbsp; = 12</div>
<div>
		whisper_model_load: n_mels&nbsp; &nbsp; &nbsp; &nbsp; = 80</div>
<div>
		whisper_model_load: ftype&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= 1</div>
<div>
		whisper_model_load: qntvr&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;= 0</div>
<div>
		whisper_model_load: type&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = 3 (small)</div>
<div>
		whisper_model_load: adding 1608 extra tokens</div>
<div>
		whisper_model_load: n_langs&nbsp; &nbsp; &nbsp; &nbsp;= 99</div>
<div>
		whisper_model_load:&nbsp; &nbsp; &nbsp; CPU total size =&nbsp; &nbsp;487.01 MB</div>
<div>
		whisper_model_load: model size&nbsp; &nbsp; =&nbsp; 487.01 MB</div>
<div>
		whisper_init_state: kv self size&nbsp; =&nbsp; &nbsp;49.55 MB</div>
<div>
		whisper_init_state: kv cross size =&nbsp; &nbsp;55.30 MB</div>
<div>
		whisper_init_state: compute buffer (conv)&nbsp; &nbsp;=&nbsp; &nbsp;22.54 MB</div>
<div>
		&nbsp;whisper_init_state: compute buffer (encode) =&nbsp; 2&nbsp;80.20 MB</div>
<div>
		whisper_init_state: compute buffer (cross)&nbsp; =&nbsp; &nbsp; 6.31 MB</div>
<div>
		whisper_init_state: compute buffer (decode) =&nbsp; &nbsp;97.40 MB</div>
<div>
		&nbsp;</div>
<div>
		system_info: n_threads = 4 / 8 | AVX = 1 | AVX2 = 1 | AVX512 = 0 | FMA = 1 | NEON = 0 | ARM_FMA = 0 | METAL = 0 | F16C = 1 | FP16_VA = 0 | WASM_SIMD = 0 | BLAS = 0 | SSE3 = 1 | SSSE3 = 1 | VSX = 0 | CUDA = 0 | COREML = 0 | OPENVINO = 0</div>
<div>
		&nbsp;</div>
<div>
		main: processing &#39;/home/codelast/st.wav&#39; (23957094 samples, 1497.3 sec), 4 threads, 1 processors, 5 beams + best of 5, lang = zh, task = transcribe, timestamps = 1 ...</div>
<div>
		&nbsp;</div>
<div>
		&nbsp;</div>
<div>
		[00:00:00.000 --&gt; 00:00:19.040]&nbsp; 这里是识别文字第一句</div>
<div>
		[00:00:19.040 --&gt; 00:00:40.280]&nbsp; 这里是识别文字第二句<br />
		......</div>
</blockquote>
<div>
	<br />
	可以看到，输出的内容是带有时间轴标识的。<br />
	细看会发现，Whisper输出的中文有时会有错别字，我们可以用AI进一步纠错，想怎么处理你就可以随意发挥了。<br />
	<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
	<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;版权声明&nbsp;<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;<br />
	转载需注明出处：<u><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><em><span style="color: rgb(0, 0, 255);"><strong style="font-size: 16px;"><span style="font-family: arial, helvetica, sans-serif;">codelast.com</span></strong></span></em></a></u>&nbsp;<br />
	感谢关注我的微信公众号（微信扫一扫）：<br />
	<img decoding="async" alt="wechat qrcode of codelast" src="https://www.codelast.com/codelast_wechat_qr_code.jpg" style="color: rgb(77, 77, 77); font-size: 13px; width: 200px; height: 200px;" /><br />
	以及我的微信视频号：</p>
<p style="border: 0px; font-size: 13px; margin: 0px 0px 9px; outline: 0px; padding: 0px; color: rgb(77, 77, 77);">
		<img decoding="async" alt="" src="https://www.codelast.com/wechat_shipinhao_qr_code.jpg" style="text-align: center; width: 200px; height: 199px;" /></p>
<div>
		&nbsp;</div>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codelast.com/%e5%8e%9f%e5%88%9b-%e7%94%a8whisper-cpp%e5%9c%a8%e6%9c%ac%e5%9c%b0%e7%a6%bb%e7%ba%bf%e6%8a%8amp3%e9%9f%b3%e9%a2%91%e8%bd%ac%e6%88%90%e4%b8%ad%e6%96%87/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>[原创] ChatGPT的出现，让我第一次觉得机器有希望替代Cambly</title>
		<link>https://www.codelast.com/%e5%8e%9f%e5%88%9b-chatgpt%e7%9a%84%e5%87%ba%e7%8e%b0%ef%bc%8c%e8%ae%a9%e6%88%91%e7%ac%ac%e4%b8%80%e6%ac%a1%e8%a7%89%e5%be%97%e6%9c%ba%e5%99%a8%e6%9c%89%e5%b8%8c%e6%9c%9b%e6%9b%bf%e4%bb%a3cambly/</link>
					<comments>https://www.codelast.com/%e5%8e%9f%e5%88%9b-chatgpt%e7%9a%84%e5%87%ba%e7%8e%b0%ef%bc%8c%e8%ae%a9%e6%88%91%e7%ac%ac%e4%b8%80%e6%ac%a1%e8%a7%89%e5%be%97%e6%9c%ba%e5%99%a8%e6%9c%89%e5%b8%8c%e6%9c%9b%e6%9b%bf%e4%bb%a3cambly/#respond</comments>
		
		<dc:creator><![CDATA[learnhard]]></dc:creator>
		<pubDate>Sun, 11 Dec 2022 14:29:21 +0000</pubDate>
				<category><![CDATA[原创]]></category>
		<category><![CDATA[综合]]></category>
		<category><![CDATA[Cambly]]></category>
		<category><![CDATA[ChatGPT]]></category>
		<category><![CDATA[OpenAI]]></category>
		<category><![CDATA[强化学习]]></category>
		<category><![CDATA[聊天机器人]]></category>
		<guid isPermaLink="false">https://www.codelast.com/?p=13758</guid>

					<description><![CDATA[<div style="text-align: center;">
	<a href="https://www.codelast.com/" rel="noopener" target="_blank"><img decoding="async" alt="" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/open_ai.jpg" style="width: 600px; height: 360px;" /></a></div>
<div>
	<a href="http://cambly.com/invite/DZZZ" rel="noopener" target="_blank"><br />
	Cambly</a>是一个和真人老外(native English speakers)视频聊天练习英语口语的平台。</div>
<div>
	<a href="https://openai.com/blog/chatgpt/" rel="noopener" target="_blank">ChatGPT</a>是由OpenAI于2022年11月推出的一个人工智能聊天机器人程序，该程序使用基于GPT-3.5架构的大型语言模型并通过强化学习进行训练。<br />
	这俩货有什么关系？听我慢慢道来。<br />
	<span id="more-13758"></span><br />
	作为一直努力保持良好英语口语水平的人，我已经连续付费订阅了几年的Cambly服务了，大概每周2～3次和老外聊天，每次15分钟。这年费么，实话说不算贵，大概2千多/年的价位。我曾经不止一次地希望有人工智能的程序可以代替Cambly的真人英语对话服务（或者至少在80%的场景下），从而可以让我省下Cambly年费。<br />
	例如在2020年的时候，我看到百度推出了一个<a href="https://www.codelast.com/?p=12698" rel="noopener" target="_blank">PLATO-2</a>，于是当时我就试了一下它的效果，结果我只能评价：这是什么<span style="color:#ff0000;">破烂玩意</span>啊？！确实你们论文里的公式写得很fancy，你们的结论很诱人，你们声称的效果也很牛B，但完全经不起实践的检验啊！一个chat bot，我跟它对话的时候，能让我100%觉得它是个bot，并且这个bot还时不时体现出它傻到无法形容的水平，那么请问这个bot存在的意义是什么？写论文、开源GitHub代码仅仅是为了和阿里一样搞开源KPI吗？<br />
	<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
	不仅是百度的这个模型，还有很多其他公司出品的各种号称各种牛B的对话程序，只要是公开出来可以服务大众的，可以说是一个真●智能的都没有，就真有的话也是那种只发论文但闭源、未接受过群众鞭笞的，毫无意义。<br />
	直到最近ChatGPT的火爆，让我再次看到了曙光！<br />
	ChatGPT火到什么程度？不仅网上的科技报道铺天盖地，我一堆同事都在玩。它最厉害的地方在于，它似乎了解&#8220;所有&#8221;领域的知识，甚至很多专业领域。ChatGPT作为程序员发明的产品，自然被很多程序员用来检验其在程序开发领域的可用性了，例如这位兄弟：<br />
	<a href="https://www.codelast.com/" target="_blank" rel="noopener"><img decoding="async" alt="" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/chatgpt_answer_flask_question.png" style="width: 750px; height: 470px;" /></a><br />
	ChatGPT教他解决Flask开发过程中遇到的一个问题。<br />
	这样的例子数不胜数。<br />
	<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
	话扯远了，现在回到&#8220;替代Cambly真人英语对话服务&#8221;这个话题上，我觉得如果真的有哪家初创公司能往这方面加把劲，给ChatGPT套一个壳，加上voice-to-text/text-to-voice的功能，让ChatGPT可以开口&#8220;说话&#8221;，再给它套一个能对上口型的VR形象，再优化访问速度，那就至少能在80%的程度上代替真人英语口语老师了。<br />
	尽管人类的生活经验、丰富表情、说话语气是聊天机器人所不具备的特点，但是，当聊天机器人程序把价格压到只有真人的20%甚至更低时，人类在语言培训领域几乎将优势尽失。
<p>
		<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
		<span style="color: rgb(255, 0, 0);">➤➤</span>&#160;版权声明&#160;<span style="color: rgb(255, 0, 0);">➤➤</span>&#160;<br />
		转载需注明出处：<u><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><em><span style="color: rgb(0, 0, 255);"><strong style="font-size: 16px;"><span style="font-family: arial, helvetica, sans-serif;">codelast.com</span></strong></span></em></a></u>&#160;<br />
		感谢关注我的微信公众号（微信扫一扫）：<br />
		<img decoding="async" alt="wechat qrcode of codelast" src="https://www.codelast.com/codelast_wechat_qr_code.jpg" style="color: rgb(77, 77, 77); font-size: 13px; width: 200px; height: 200px;" /><br />
		以及我的微信视频号：</p>
<p style="border: 0px; font-size: 13px; margin: 0px 0px 9px; outline: 0px; padding: 0px; color: rgb(77, 77, 77);">
		<img decoding="async" alt="" src="https://www.codelast.com/wechat_shipinhao_qr_code.jpg" style="text-align: center; width: 200px; height: 199px;" /></p>
</div>&#8230; <a href="https://www.codelast.com/%e5%8e%9f%e5%88%9b-chatgpt%e7%9a%84%e5%87%ba%e7%8e%b0%ef%bc%8c%e8%ae%a9%e6%88%91%e7%ac%ac%e4%b8%80%e6%ac%a1%e8%a7%89%e5%be%97%e6%9c%ba%e5%99%a8%e6%9c%89%e5%b8%8c%e6%9c%9b%e6%9b%bf%e4%bb%a3cambly/" class="read-more">Read More </a>]]></description>
										<content:encoded><![CDATA[<div style="text-align: center;">
	<a href="https://www.codelast.com/" rel="noopener" target="_blank"><img decoding="async" alt="" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/open_ai.jpg" style="width: 600px; height: 360px;" /></a></div>
<div>
	<a href="http://cambly.com/invite/DZZZ" rel="noopener" target="_blank"><br />
	Cambly</a>是一个和真人老外(native English speakers)视频聊天练习英语口语的平台。</div>
<div>
	<a href="https://openai.com/blog/chatgpt/" rel="noopener" target="_blank">ChatGPT</a>是由OpenAI于2022年11月推出的一个人工智能聊天机器人程序，该程序使用基于GPT-3.5架构的大型语言模型并通过强化学习进行训练。<br />
	这俩货有什么关系？听我慢慢道来。<br />
	<span id="more-13758"></span><br />
	作为一直努力保持良好英语口语水平的人，我已经连续付费订阅了几年的Cambly服务了，大概每周2～3次和老外聊天，每次15分钟。这年费么，实话说不算贵，大概2千多/年的价位。我曾经不止一次地希望有人工智能的程序可以代替Cambly的真人英语对话服务（或者至少在80%的场景下），从而可以让我省下Cambly年费。<br />
	例如在2020年的时候，我看到百度推出了一个<a href="https://www.codelast.com/?p=12698" rel="noopener" target="_blank">PLATO-2</a>，于是当时我就试了一下它的效果，结果我只能评价：这是什么<span style="color:#ff0000;">破烂玩意</span>啊？！确实你们论文里的公式写得很fancy，你们的结论很诱人，你们声称的效果也很牛B，但完全经不起实践的检验啊！一个chat bot，我跟它对话的时候，能让我100%觉得它是个bot，并且这个bot还时不时体现出它傻到无法形容的水平，那么请问这个bot存在的意义是什么？写论文、开源GitHub代码仅仅是为了和阿里一样搞开源KPI吗？<br />
	<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
	不仅是百度的这个模型，还有很多其他公司出品的各种号称各种牛B的对话程序，只要是公开出来可以服务大众的，可以说是一个真●智能的都没有，就真有的话也是那种只发论文但闭源、未接受过群众鞭笞的，毫无意义。<br />
	直到最近ChatGPT的火爆，让我再次看到了曙光！<br />
	ChatGPT火到什么程度？不仅网上的科技报道铺天盖地，我一堆同事都在玩。它最厉害的地方在于，它似乎了解&ldquo;所有&rdquo;领域的知识，甚至很多专业领域。ChatGPT作为程序员发明的产品，自然被很多程序员用来检验其在程序开发领域的可用性了，例如这位兄弟：<br />
	<a href="https://www.codelast.com/" target="_blank" rel="noopener"><img decoding="async" alt="" src="https://www.codelast.com/wp-content/uploads/ckfinder/images/chatgpt_answer_flask_question.png" style="width: 750px; height: 470px;" /></a><br />
	ChatGPT教他解决Flask开发过程中遇到的一个问题。<br />
	这样的例子数不胜数。<br />
	<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
	话扯远了，现在回到&ldquo;替代Cambly真人英语对话服务&rdquo;这个话题上，我觉得如果真的有哪家初创公司能往这方面加把劲，给ChatGPT套一个壳，加上voice-to-text/text-to-voice的功能，让ChatGPT可以开口&ldquo;说话&rdquo;，再给它套一个能对上口型的VR形象，再优化访问速度，那就至少能在80%的程度上代替真人英语口语老师了。<br />
	尽管人类的生活经验、丰富表情、说话语气是聊天机器人所不具备的特点，但是，当聊天机器人程序把价格压到只有真人的20%甚至更低时，人类在语言培训领域几乎将优势尽失。</p>
<p>
		<span style="color: rgb(255, 255, 255);">文章来源：</span><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><span style="color: rgb(255, 255, 255);">https://www.codelast.com/</span></a><br />
		<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;版权声明&nbsp;<span style="color: rgb(255, 0, 0);">➤➤</span>&nbsp;<br />
		转载需注明出处：<u><a href="https://www.codelast.com/" rel="noopener noreferrer" target="_blank"><em><span style="color: rgb(0, 0, 255);"><strong style="font-size: 16px;"><span style="font-family: arial, helvetica, sans-serif;">codelast.com</span></strong></span></em></a></u>&nbsp;<br />
		感谢关注我的微信公众号（微信扫一扫）：<br />
		<img decoding="async" alt="wechat qrcode of codelast" src="https://www.codelast.com/codelast_wechat_qr_code.jpg" style="color: rgb(77, 77, 77); font-size: 13px; width: 200px; height: 200px;" /><br />
		以及我的微信视频号：</p>
<p style="border: 0px; font-size: 13px; margin: 0px 0px 9px; outline: 0px; padding: 0px; color: rgb(77, 77, 77);">
		<img decoding="async" alt="" src="https://www.codelast.com/wechat_shipinhao_qr_code.jpg" style="text-align: center; width: 200px; height: 199px;" /></p>
</div>
]]></content:encoded>
					
					<wfw:commentRss>https://www.codelast.com/%e5%8e%9f%e5%88%9b-chatgpt%e7%9a%84%e5%87%ba%e7%8e%b0%ef%bc%8c%e8%ae%a9%e6%88%91%e7%ac%ac%e4%b8%80%e6%ac%a1%e8%a7%89%e5%be%97%e6%9c%ba%e5%99%a8%e6%9c%89%e5%b8%8c%e6%9c%9b%e6%9b%bf%e4%bb%a3cambly/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
