Table of Contents
From bytes to everything: Breaking through boundaries and moving towards unified data modeling
Home Technology peripherals AI Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!

Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!

Mar 13, 2024 pm 07:20 PM
Model train emulator

The latest achievement bGPT launched by Microsoft Research Asia, this byte-based Transformer model, opens a new door for us to explore the digital world.

Unlike traditional vocabulary-based language models, bGPT is unique in that it can directly process raw binary data without being restricted by specific formats or tasks. It aims to fully simulate the digital world, opening up new possibilities for model development.

Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!

Paper: https://www.php.cn/link/ee88b3cea2051be97bcddf2e0d9a28f6

Code: https://www.php.cn/link/359499f804ea7988921bf86c9377fb95

Model :https://www.php.cn/link/4b459ea1a5917be436df5f0bd5b3c4ad

## Project homepage: https://www.php.cn/link/71af59614c8b42af334933e9261e53be

The research team demonstrated the huge potential of bGPT in modeling in their research paper. By performing byte-level processing, bGPT can not only generate text, images, and audio, but also simulate computer behavior, including format conversion algorithms and modeling of CPU states. This approach of treating all data as a sequence of bytes enables bGPT to integrate different types of data into the same framework.

Once released, bGPT’s paper caused widespread discussion on This activity opens up new possibilities.

Binary data: the basic DNA that constitutes the digital world

Binary data is the cornerstone of the digital world, which runs through the operation of computer processors and the electronic products we use every day The system is the core of all data, equipment and software. Therefore, based on this foundation, the goal of bGPT is to understand the internal logic of digital systems by studying binary data sequences, thereby reshaping and simulating various complex digital phenomena.

bGPT can not only be applied to conventional AI generation and understanding tasks through byte-level processing, but can also handle more non-traditional applications. For example, it can directly simulate MIDI - a standard format for music transmission and storage, which previous research has avoided direct modeling due to the binary nature of MIDI.

But bGPT is naturally suitable for such tasks. It can accurately simulate the conversion algorithm of music data and achieve an extremely low error rate (0.0011 BPB) when converting ABC notation to MIDI format. .

In practical applications, bGPT is usually able to accurately complete the conversion between ABC symbols and MIDI files, and sometimes can even correct errors in the original files to make the music conversion more accurate.

Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!


bGPT automatically converts ABC notation into MIDI format (above) and the original MIDI data ( The comparison of the figure below) highlights the key difference: although a beat is missing in the original MIDI data (see figure below), causing the chord accompaniment to be disconnected, the result of the bGPT conversion (see figure above) correctly fills in this is missing, ensuring the smoothness of the chord accompaniment.

The research team also regards CPU modeling as a representative task for hardware behavior simulation: this task requires the model to receive a sequence of low-level machine instructions as input, and its goal is to accurately predict the execution of each instruction. How the CPU status is updated until the program is stopped.

In this task, bGPT demonstrated an accuracy of over 99.99%, demonstrating the power and scalability of the byte model in processing native binary data.

Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!

Given the program and initial CPU state, bGPT is able to accurately predict the complete process of CPU execution until the program terminates. In this example, bGPT handles all CPU instructions accurately. For ease of understanding, the actual byte sequence is converted into a more readable format.

From bytes to everything: Breaking through boundaries and moving towards unified data modeling

bGPT can not only process native binary data, but also integrate multiple data types Into a unified model architecture, all data are regarded as byte sequences.

This approach not only simplifies the data modeling process, but also makes integration from any data source a breeze without the need to customize models for specific data types.

The research team gave examples of traditional text, image and audio files in the paper, demonstrating bGPT's capabilities in unified data modeling. The bGPT model they trained has about 100 million parameters.

Experimental results show that in comparison with models of the same scale as GPT-2 (text model), ViT (visual model) and AST (audio model), bGPT performs better on different data types Both demonstrated comparable performance.

bGPT performs very well in text generation. Thanks to its byte-level text encoding, the model does not rely on vocabulary and can therefore support all languages.

Its hierarchical Transformer architecture, although the computational overhead is similar to GPT-2, can generate text up to 8KB, which greatly exceeds the length limit of GPT-2. After pre-training on Wikipedia data, the text generated by bGPT is comparable to GPT-2 in both style and topic, proving its powerful ability in text generation.

bGPT is pre-trained on the Wikipedia dataset, and the quality and topic consistency of the generated text samples are comparable to GPT-2.

bGPT can generate images by predicting the next byte in a sequence of image bytes. The model is pre-trained on the ImageNet dataset, and the generated images have a resolution of 32x32 pixels.

Although at the current scale, it is difficult to accurately capture the two-dimensional spatial relationship of the image through byte sequences, resulting in artifacts and noise in the generated image, texture and light and shadow effects are usually Still relatively accurate.

In addition, these generated images can be decoded into BMP files normally. The research team pointed out that by expanding the scale of bGPT, similar to the method of pixel sequence modeling of iGPT developed by OpenAI, it may be possible to achieve higher quality and more realistic image generation.

These are a set of images generated by bGPT pre-trained on the ImageNet dataset. While the texture and lighting effects of the images are generally accurate, identifying the main objects in these generated images can be challenging.

bGPT treats audio data as a sequence of bytes and can generate 1 second long audio samples with a sampling rate of 8000 Hz.

The model was pre-trained on the LibriSpeech data set and further fine-tuned and demonstrated on the Speech Commands v2 data set. The audio samples generated by bGPT maintain a high level of accuracy, with some samples being nearly indistinguishable from real audio. The following is a set of examples demonstrating bGPT's capabilities in the field of audio generation.

Explore the digital world of bytes with bGPT

Traditional language models, no matter how powerful they are, mainly focus on processing natural language text . The bGPT model breaks the limitation of text processing through a byte-based processing mechanism and opens up a new data processing category.

This advancement gives bGPT the ability to seamlessly handle various data types including text, images, audio, and even native binary data from algorithms and hardware, providing It paves the way to fully simulate and understand the digital world.

Although bGPT has demonstrated compelling capabilities, it has limitations in terms of computational overhead. For example, it can currently only process byte sequences of up to 8KB on conventional graphics cards. This poses obvious limitations for applications that need to generate or process large amounts of data. Future work plans will focus on developing more efficient algorithms and taking advantage of advances in hardware, aiming to improve the ability to process larger data sequences.

Technology enthusiasts around the world have begun to look forward to the future potential of bGPT. From the optimization of network pruning and self-learning to the self-reconstruction capabilities of ultra-large-scale networks, these discussions point to a common Vision: bGPT may eventually achieve a unified model capable of processing and outputting all types of byte data, truly becoming a comprehensive simulator of the digital world.

Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!

The research team has open sourced the code and model of bGPT. This means that you can directly train bGPT on your own data set without making any adjustments to the model architecture, and explore the broad prospects of byte models in the digital field.

The above is the detailed content of Will LLM become history? Open source bGPT may subvert the deep learning paradigm: directly simulate binary, opening a new era of analog digital world!. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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 Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Introduction to how to use the joiplay simulator Introduction to how to use the joiplay simulator May 04, 2024 pm 06:40 PM

The jojplay simulator is a very easy-to-use mobile phone simulator. It supports computer games to run on mobile phones and has very good compatibility. Some players don’t know how to use it. The editor below will introduce how to use it. How to use joiplay simulator 1. First, you need to download the Joiplay body and RPGM plug-in. It is best to install them in the order of body-plug-in. The apk package can be obtained in the Joiplay bar (click to get >>>). 2. After Android is completed, you can add games in the lower left corner. 3. Fill in the name casually, and press CHOOSE on executablefile to select the game.exe file of the game. 4. Icon can be left blank or you can choose your favorite picture.

The world's most powerful open source MoE model is here, with Chinese capabilities comparable to GPT-4, and the price is only nearly one percent of GPT-4-Turbo The world's most powerful open source MoE model is here, with Chinese capabilities comparable to GPT-4, and the price is only nearly one percent of GPT-4-Turbo May 07, 2024 pm 04:13 PM

Imagine an artificial intelligence model that not only has the ability to surpass traditional computing, but also achieves more efficient performance at a lower cost. This is not science fiction, DeepSeek-V2[1], the world’s most powerful open source MoE model is here. DeepSeek-V2 is a powerful mixture of experts (MoE) language model with the characteristics of economical training and efficient inference. It consists of 236B parameters, 21B of which are used to activate each marker. Compared with DeepSeek67B, DeepSeek-V2 has stronger performance, while saving 42.5% of training costs, reducing KV cache by 93.3%, and increasing the maximum generation throughput to 5.76 times. DeepSeek is a company exploring general artificial intelligence

KAN, which replaces MLP, has been extended to convolution by open source projects KAN, which replaces MLP, has been extended to convolution by open source projects Jun 01, 2024 pm 10:03 PM

Earlier this month, researchers from MIT and other institutions proposed a very promising alternative to MLP - KAN. KAN outperforms MLP in terms of accuracy and interpretability. And it can outperform MLP running with a larger number of parameters with a very small number of parameters. For example, the authors stated that they used KAN to reproduce DeepMind's results with a smaller network and a higher degree of automation. Specifically, DeepMind's MLP has about 300,000 parameters, while KAN only has about 200 parameters. KAN has a strong mathematical foundation like MLP. MLP is based on the universal approximation theorem, while KAN is based on the Kolmogorov-Arnold representation theorem. As shown in the figure below, KAN has

Life Restart Simulator Guide Life Restart Simulator Guide May 07, 2024 pm 05:28 PM

Life Restart Simulator is a very interesting simulation game. This game has become very popular recently. There are many ways to play in the game. Below, the editor has brought you a complete guide to Life Restart Simulator. Come and take a look. What strategies are there? Life Restart Simulator Guide Guide Features of Life Restart Simulator This is a very creative game in which players can play according to their own ideas. There are many tasks to complete every day, and you can enjoy a new life in this virtual world. There are many songs in the game, and all kinds of different lives are waiting for you to experience. Life Restart Simulator Game Contents Talent Card Drawing: Talent: You must choose the mysterious small box to become an immortal. A variety of small capsules are available to avoid dying midway. Cthulhu may choose

Kuaishou version of Sora 'Ke Ling' is open for testing: generates over 120s video, understands physics better, and can accurately model complex movements Kuaishou version of Sora 'Ke Ling' is open for testing: generates over 120s video, understands physics better, and can accurately model complex movements Jun 11, 2024 am 09:51 AM

What? Is Zootopia brought into reality by domestic AI? Exposed together with the video is a new large-scale domestic video generation model called "Keling". Sora uses a similar technical route and combines a number of self-developed technological innovations to produce videos that not only have large and reasonable movements, but also simulate the characteristics of the physical world and have strong conceptual combination capabilities and imagination. According to the data, Keling supports the generation of ultra-long videos of up to 2 minutes at 30fps, with resolutions up to 1080p, and supports multiple aspect ratios. Another important point is that Keling is not a demo or video result demonstration released by the laboratory, but a product-level application launched by Kuaishou, a leading player in the short video field. Moreover, the main focus is to be pragmatic, not to write blank checks, and to go online as soon as it is released. The large model of Ke Ling is already available in Kuaiying.

The U.S. Air Force showcases its first AI fighter jet with high profile! The minister personally conducted the test drive without interfering during the whole process, and 100,000 lines of code were tested for 21 times. The U.S. Air Force showcases its first AI fighter jet with high profile! The minister personally conducted the test drive without interfering during the whole process, and 100,000 lines of code were tested for 21 times. May 07, 2024 pm 05:00 PM

Recently, the military circle has been overwhelmed by the news: US military fighter jets can now complete fully automatic air combat using AI. Yes, just recently, the US military’s AI fighter jet was made public for the first time and the mystery was unveiled. The full name of this fighter is the Variable Stability Simulator Test Aircraft (VISTA). It was personally flown by the Secretary of the US Air Force to simulate a one-on-one air battle. On May 2, U.S. Air Force Secretary Frank Kendall took off in an X-62AVISTA at Edwards Air Force Base. Note that during the one-hour flight, all flight actions were completed autonomously by AI! Kendall said - "For the past few decades, we have been thinking about the unlimited potential of autonomous air-to-air combat, but it has always seemed out of reach." However now,

Introduction to joiplay simulator font setting method Introduction to joiplay simulator font setting method May 09, 2024 am 08:31 AM

The jojplay simulator can actually customize the game fonts, and can solve the problem of missing characters and boxed characters in the text. I guess many players still don’t know how to operate it. The following editor will bring you the method of setting the font of the jojplay simulator. introduce. How to set the joiplay simulator font 1. First open the joiplay simulator, click on the settings (three dots) in the upper right corner, and find it. 2. In the RPGMSettings column, click to select the CustomFont custom font in the third row. 3. Select the font file and click OK. Be careful not to click the "Save" icon in the lower right corner, otherwise the default settings will be restored. 4. Recommended Founder and Quasi-Yuan Simplified Chinese (already in the folders of the games Fuxing and Rebirth). joi

Tesla robots work in factories, Musk: The degree of freedom of hands will reach 22 this year! Tesla robots work in factories, Musk: The degree of freedom of hands will reach 22 this year! May 06, 2024 pm 04:13 PM

The latest video of Tesla's robot Optimus is released, and it can already work in the factory. At normal speed, it sorts batteries (Tesla's 4680 batteries) like this: The official also released what it looks like at 20x speed - on a small "workstation", picking and picking and picking: This time it is released One of the highlights of the video is that Optimus completes this work in the factory, completely autonomously, without human intervention throughout the process. And from the perspective of Optimus, it can also pick up and place the crooked battery, focusing on automatic error correction: Regarding Optimus's hand, NVIDIA scientist Jim Fan gave a high evaluation: Optimus's hand is the world's five-fingered robot. One of the most dexterous. Its hands are not only tactile

See all articles