


After ChatGPT can be connected to the Internet, OpenAI also quickly introduced a code generator. With the support of this plug-in, ChatGPT can even generate its own machine learning model.
Last Friday, OpenAI just announced the shocking news that ChatGPT can be connected to the Internet and connected to third-party plug-ins!
In addition to third-party plug-ins, OpenAI also introduced its own plug-in "Code Interpreter" and gave several special use cases: solving quantitative and qualitative mathematical problems; performing data analysis and visualization ;Quickly convert file formats.
In addition, Greg Brockman demonstrated that ChatGPT can also process uploaded video files.
And a best-selling author named Andrew Mayne, OpenAI's creative application and science communicator, immediately gave it a try - using the Code Inerpreter ) access ChatGPT.
The feeling is that it is so silky!
When I used ChatGPT to write code, I always needed to take the code out and put it in another environment for testing.
Now, you can develop directly in ChatGPT without leaving the current interface.
As long as we add this code interpreter to the data analysis and drawing functions, an incredibly powerful coding and research tool will be born.
OpenAI’s new plug-in system: code interpreter
Currently, the code interpreter can only run Python on a small number of libraries, and even with the most basic libraries, it There are so many things you can do and it’s very interesting.
Additionally, in addition to generating code, the Code Interpreter (CI) can analyze the output and use it in another function.
Therefore, we can string different codes together, get the output of one, and then provide it to the other.
This is how this Pac-Man gif is generated: CI uses an algorithm to generate a maze, turns the maze into blocks, uses an algorithm to find the exit, makes it look like Pac-Man, and then generates a gif.
The following are some examples of Mayne using ChatGPT’s code interpreter plugin to conduct random experiments.
Create a machine learning model (sort of)
Although currently ChatGPT cannot load any machine learning libraries into the code interpreter, we can use n-grams to do some basic statistics Text generation.
In the following example, by providing it with a book, it is asked to create a prediction algorithm and then predict the next word in the text sequence.
GPT uses an n-gram model to generate the algorithm:
Next word prediction is a natural language processing task that can be solved using a language model. A simple way to build a language model is to use an n-gram model.
The n-gram model is a statistics-based language model that predicts the next word based on the previous n-1 words. For example, if we choose n=3 (i.e. ternary model), the model will predict the next word based on the previous two words.
Here is some code to help you build a ternary model from scratch.
Voice
Because ChatGPT can understand a lot of mathematical data and CI can generate downloadable files, Mayne Tried using ChatGPT to generate Shepard tones. This is a unique tone that creates the illusion that the pitch is getting higher.
ChatGPT not only successfully completed the task, but also directly generated a wav file using CI.
Open it and listen to the Sheperd sound, and the feeling is, two words - perfect!
Since the Sheperd tone generated by ChatGPT was so perfect, Mayne went a step further and asked ChatGPT to generate a session of Conway's Game of Life and then convert it to music.
(Conway's Game of Life is a computer program designed by Conway of the University of Cambridge. It is a Turing-complete zero-player game, meaning that its evolution depends on its initial state and requires no further input .)
In the first pass, the music generated by ChatGPT was a bit too casual. Mayne asked it to generate more pleasant music, so ChatGPT applied the pentatonic scale, which sounded really good.
game_of_life_pentatonic_slowAudio: 00:0000:14
ChatGPT’s performance was so good that Mayne was so excited that he had begun to envision an entire mathematical music album , such as (Fibonacci sequence, Mandelbrot set, cellular automata).
He then asked ChatGPT to generate an album cover for the song "Conway Game of Life". Since it was not connected to the DALL-E, Mayne asked it to generate images from simulated frames.
The album cover is as follows.
QR code
Looking at this album cover, Mayne immediately realized that it might be possible to use ChatGPT to generate a valid QR code.
Mayne asked it to generate a QR code for OpenAI’s website, and the result is as follows:
So, can ChatGPT create a Conway Game of Life that ends with a QR code?
Yes, it can.
Picture
In addition, Mayen found that using OpenCV and a simple facial recognition algorithm (Haar Cascade classifier), CI You can create a function to perform face recognition.
Using OpenCV for face recognition
Now, ChatGPT can open and read files by itself, which means that in theory it can use this data Generate something new. For example, convert a picture to ASCII form.
Upload pictures:
Convert to ASCII:
Generate animation
Through the code interpreter, data can be generated and output into different formats including gif.
First, make it a bouncing block:
Then the blizzard:
Continue Next is the "Game of Life", which inspired the QR code simulation experiment.
#Trying to get the code interpreter to use a vectorized cube to generate a "rotated cube". Before trying other methods, this was the closest I could get:
OCR
Optical Character Recognition (OCR) is Code Interpretation, Study Says A library in the server. By testing with a screenshot of the website, it can indeed be identified.
Combining OCR with GPT-4, a powerful language model, offers some interesting possibilities for repairing old documents.
As can be seen from the above figure, OCR can extract part of the text from the entire image, but the result is still incomplete and contains noise.
It seems that OCR may have limitations when dealing with low-quality or distorted images. If you need to get specific information from an image, you'll also need to manually transcribe part of the content.
Calendar invitation
Although the code interpreter does not have access to the ics library, it can generate a plain text calendar invitation and then let ChatGPT saves it as an .ics file.
draw
Although there have been some interesting examples of GPT-4 generating scalable vector images (SVG). But I'm still curious about what ChatGPT and the code interpreter can do with simple image blocks.
I asked it to draw a cat and it created something resembling a cat. To make sure it wasn't made from memory, I asked it to draw a blue top hat and pipe. Not quite the top hat I imagined, but still a hat, and blue.
A cat wearing a hat and smoking a pipe:
A cat wearing a hat and smoking a pipe Cat" style hat, and a cat smoking a pipe:
Simulator
I successfully got ChatGPT to generate inner planets using the Matplotlib library Simulation of the track and save it as a gif.
I then thought about whether I could have ChatGPT simulate a game of checkers, and managed to move the pieces, but not take away the opponent's pieces out of politeness.
Can you simulate a game of chess? First I asked ChatGPT to create its own board library (a very simple board library with some restrictions and less legal moves...) and then use Unicode to represent the pieces, after which it could simulate the start of a game and convert it Save as .gif file.
The following is the conversation between me and ChatGPT during the chess simulation. As you can see, I just gave some instructions and ChatGPT and the code interpreter did the rest.
The above are some explorations of ChatGPT and code interpreter plug-ins by Andrew Mayne.
Netizens commented after reading that LLMs are becoming more and more like real programmers. They can not only suggest code snippets, but also write entire blocks of code, run the code, and output further guidance and feedback to you.
Some people said that even if they stop what they are doing, they should read this article about the use cases of the GPT-4 code interpreter plug-in. This is completely crazy and will change everything.
Reference:
https://andrewmayneblog.wordpress.com/2023/03/23/chatgpt-code-interpreter-magic/
##
The above is the detailed content of Use ChatGPT to build large models in seconds! OpenAI's new plug-in is crazy, connect to the code interpreter and get it with one click. For more information, please follow other related articles on the PHP Chinese website!

自从 ChatGPT、Stable Diffusion 发布以来,各种相关开源项目百花齐放,着实让人应接不暇。今天,着重挑选几个优质的开源项目分享给大家,对我们的日常工作、学习生活,都会有很大的帮助。

Word文档拆分后的子文档字体格式变了的解决办法:1、在大纲模式拆分文档前,先选中正文内容创建一个新的样式,给样式取一个与众不同的名字;2、选中第二段正文内容,通过选择相似文本的功能将剩余正文内容全部设置为新建样式格式;3、进入大纲模式进行文档拆分,操作完成后打开子文档,正文字体格式就是拆分前新建的样式内容。

用 ChatGPT 辅助写论文这件事,越来越靠谱了。 ChatGPT 发布以来,各个领域的从业者都在探索 ChatGPT 的应用前景,挖掘它的潜力。其中,学术文本的理解与编辑是一种极具挑战性的应用场景,因为学术文本需要较高的专业性、严谨性等,有时还需要处理公式、代码、图谱等特殊的内容格式。现在,一个名为「ChatGPT 学术优化(chatgpt_academic)」的新项目在 GitHub 上爆火,上线几天就在 GitHub 上狂揽上万 Star。项目地址:https://github.com/

面对一夜爆火的 ChatGPT ,我最终也没抵得住诱惑,决定体验一下,不过这玩意要注册需要外国手机号以及科学上网,将许多人拦在门外,本篇博客将体验当下爆火的 ChatGPT 以及无需注册和科学上网,拿来即用的 ChatGPT 使用攻略,快来试试吧!

阅读论文可以说是我们的日常工作之一,论文的数量太多,我们如何快速阅读归纳呢?自从ChatGPT出现以后,有很多阅读论文的服务可以使用。其实使用ChatGPT API非常简单,我们只用30行python代码就可以在本地搭建一个自己的应用。 阅读论文可以说是我们的日常工作之一,论文的数量太多,我们如何快速阅读归纳呢?自从ChatGPT出现以后,有很多阅读论文的服务可以使用。其实使用ChatGPT API非常简单,我们只用30行python代码就可以在本地搭建一个自己的应用。使用 Python 和 C

ChatGPT可以联网后,OpenAI还火速介绍了一款代码生成器,在这个插件的加持下,ChatGPT甚至可以自己生成机器学习模型了。 上周五,OpenAI刚刚宣布了惊爆的消息,ChatGPT可以联网,接入第三方插件了!而除了第三方插件,OpenAI也介绍了一款自家的插件「代码解释器」,并给出了几个特别的用例:解决定量和定性的数学问题;进行数据分析和可视化;快速转换文件格式。此外,Greg Brockman演示了ChatGPT还可以对上传视频文件进行处理。而一位叫Andrew Mayne的畅销作

本篇文章给大家带来了关于php的相关知识,其中主要介绍了我是怎么用ChatGPT学习PHP中AOP的实现,感兴趣的朋友下面一起来看一下吧,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
