search
HomeTechnology peripheralsAIChatGPT is like HTML for the internet age

We have recently done some development based on ChatGPT and would like to share some experiences.

ChatGPT is a language model, not a general artificial intelligence

ChatGPT, and GPT-3, are mainly a language model. In other words, he is like a 5-year-old child who speaks Chinese very well (of course English, French, German and other dozens of languages ​​are equally good), but he cannot be said to be intelligent.

The whole world knows what he is talking about, except himself.

The most basic principle is just like what I said:

The bright moon in front of the window__

What should be filled in that blank? I think most people have the word "light" in their minds. This is because all the articles we have seen in history give us the impression that as long as the "bright moon in front of the window" appears in the front, the possibility of "light" in the back is much higher than that of "bright", "bright", "fire", etc. Any Chinese character is higher than a comma or period, and I have never seen it followed by an exclamation mark. It can be said that ChatGPT is like a three-year-old child who follows the TV and likes to repeat "I love you like a mouse loves rice". The whole world knows what he is talking about, except himself.

ChatGPT is a liberal arts student who is extremely poor in mathematics

Although his language ability is first-rate, any problem that requires simple logic and modeling will stump him. An obvious example is that he is very poor at mathematics.

If you ask it what 1 1 is equal to, he can always answer accurately that it is equal to 2. Don’t think that he figured it out. He just saw too many multiplication tables and relied on his sense of language to say it.

If you ask him what is 1346 times 364, the calculation result he gives is different every time, sometimes it is 495504, sometimes it is 496644, sometimes it is 495884. The correct result is 489944, which is basically wrong. But from a regular point of view, the last digit and first of the multiplication it gives are generally correct, and there is not much difference in the number of digits. It can be seen here that he just read too many files and found that if a string ending in 6 plus multiplication plus a string ending in 4 are used as a sequence, a large proportion of the sequence of numbers ending in 4 will be That’s all.

ChatGPT is like HTML for the internet age

So, ChatGPT is a liberal arts student who completely failed in science. Some people also commented in the group that ChatGPT is a child with a very high emotional intelligence and a very good eloquence. Unfortunately, he dropped out of junior high school.

It appears as a language model, not a general artificial intelligence. Even basic mathematics is beyond its capabilities, let alone reasoning.

But with the language model layer, it is much easier to develop other models on top, such as mathematics, logic and other models.

ChatGPT is more like HTML

Many people compare it to Google. But in fact, I think it is architecturally more like the HTML layer, or the View layer in the MVC (Model-View-Controller) system that everyone in the technology world is familiar with.

In the Internet era, it was a database, which used a dynamic language (PHP, or Python) to generate HTML as an interface with humans. In the era of mobile Internet, this presentation layer no longer uses HTML, but is drawn using frameworks such as SwiftUI. The capabilities provided by ChatGPT will allow future applications to still be database-driven, but through its language model, it will ensure that the output is customized content that is directly readable by humans. Architecturally, ChatGPT sits at the HTML level of the website.

So, ChatGPT looks very similar to a search engine, but in fact, it still lacks a layer of data provision from a real search engine. OpenAI will also continue to increase its data range, but I think this increase is more for optimizing the text model (that is, speaking Chinese more smoothly), rather than for the amount of data itself. Because, in the Internet world, content provision cannot solely rely on Google, but is provided by tens of millions of websites.

ChatGPT allows AI to finally have its Netscape Navigator moment

Many fields need a product to bring an extremely promising technology into the public eye. On November 28, 2022, the field of natural language processing finally ushered in this moment, we can call it the Navigator moment. Before Netscape launched the Navigator browser in 1994, the Internet basically required typing the command line through a terminal, and entering commands using ftp, telnet, mail and other software. Users needed to be at least proficient in typing, and there were very few users. Netscape Navigator, the first commercial browser, allows people to directly see the graphical page, and then just use the mouse to click endlessly along the blue underlined links. Suddenly the Internet entered thousands of households in just 10 years. From the perspective of chronological history, perhaps the biggest watershed in the Internet is the pre-browser era and the post-browser era. ChatGPT has finally pushed the level of human-computer interaction to a level that most people can use. It has to be said that it is a technology and company with great potential.

The above is the detailed content of ChatGPT is like HTML for the internet age. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:51CTO.COM. If there is any infringement, please contact admin@php.cn delete
HTML超文本标记语言--超在那里?(文档分析)HTML超文本标记语言--超在那里?(文档分析)Aug 02, 2022 pm 06:04 PM

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

html和css算编程语言吗html和css算编程语言吗Sep 21, 2022 pm 04:09 PM

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

web前端笔试题库之HTML篇web前端笔试题库之HTML篇Apr 21, 2022 am 11:56 AM

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

总结HTML中a标签的使用方法及跳转方式总结HTML中a标签的使用方法及跳转方式Aug 05, 2022 am 09:18 AM

本文给大家总结介绍a标签使用方法和跳转方式,希望对大家有所帮助!

HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html中document是什么html中document是什么Jun 17, 2022 pm 04:18 PM

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

Html5怎么取消td边框Html5怎么取消td边框May 18, 2022 pm 06:57 PM

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft