


The first domestic replacement for ChatGPT is here! ChatYuan releases beta version, no registration is required, and the experience is completely free
Are you still trying to register to experience ChatGPT? No more trouble!
The Chinese NLP community has also welcomed its own ChatGPT. Recently, the Yuanyu Intelligent Development Team trained a model called Yuanyu AI (ChatYuan), which passed Interact in the form of dialogue: you can answer questions and have the ability to connect with context; you can write articles, homework, poems, and translate between Chinese and English; you can also provide relevant information on issues in specific fields such as law.
ChatYuan is a brother model of the open source model PromptCLUE. It is a zero-sample learning model that supports all Chinese tasks. Users can use it by providing prompts and support text generation, information extraction and understanding of large-scale tasks. There are nearly 30 kinds of Chinese tasks under this category. For example, the following situational dialogue:
(It turns out that the robot is also short of money to buy a house)
At the current research stage, ChatYuan is completely free and can be experienced in the web version www.YuanYu.ai, or by searching for the mini program "Yuanyu Intelligence" on WeChat.
ChatYuan vs ChatGPT
Question and Answer Task
Vertical field
#Combined contextual interaction
Writing homework
##Write an article
##Write a poem
English translation
Try to write an English email
We are based on the PromptCLUE model and use dialogue data for further training.
The version it is based on is a model with 10 billion scale parameters, and then further uses 100 million level dialogue data for training. The training computing power used is equivalent to 500 V100 training for one month.
It uses multi-task form to train single-round dialogue, multi-round dialogue, language model and decoding module at the same time. You can go here to view further information on the basic model: https://github.com /clue-ai/PromptCLUE
##Follow-up work
Some examples are generated through the use of trial mechanisms and multiple uses. Subsequent versions will better support multiple rounds of dialogue and topic switching, and further enhance model generation through human feedback learning to be more in line with users. The content of the intention.
In principle, ChatYuan can already implement many functions, and the effects are also very good. But compared to ChatGPT, there is still a gap of at least 1-2 years.
The author said that if ChatGPT is compared to the mass production of 3 nanometer chips, ChatYuan may still be in the stage of mass production of 20 nanometers.
Experience address: www.YuanYu.ai
The above is the detailed content of The first domestic replacement for ChatGPT is here! ChatYuan releases beta version, no registration is required, and the experience is completely free. For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

How to output a countdown in C? Answer: Use loop statements. Steps: 1. Define the variable n and store the countdown number to output; 2. Use the while loop to continuously print n until n is less than 1; 3. In the loop body, print out the value of n; 4. At the end of the loop, subtract n by 1 to output the next smaller reciprocal.

A C language function consists of a parameter list, function body, return value type and function name. When a function is called, the parameters are copied to the function through the value transfer mechanism, and will not affect external variables. Pointer passes directly to the memory address, modifying the pointer will affect external variables. Function prototype declaration is used to inform the compiler of function signatures to avoid compilation errors. Stack space is used to store function local variables and parameters. Too much recursion or too much space can cause stack overflow.

How to achieve the playback of pictures like videos? Many times, we need to implement similar video player functions, but the playback content is a sequence of images. direct...

Algorithms are the set of instructions to solve problems, and their execution speed and memory usage vary. In programming, many algorithms are based on data search and sorting. This article will introduce several data retrieval and sorting algorithms. Linear search assumes that there is an array [20,500,10,5,100,1,50] and needs to find the number 50. The linear search algorithm checks each element in the array one by one until the target value is found or the complete array is traversed. The algorithm flowchart is as follows: The pseudo-code for linear search is as follows: Check each element: If the target value is found: Return true Return false C language implementation: #include#includeintmain(void){i

Integers are the most basic data type in programming and can be regarded as the cornerstone of programming. The job of a programmer is to give these numbers meanings. No matter how complex the software is, it ultimately comes down to integer operations, because the processor only understands integers. To represent negative numbers, we introduced two's complement; to represent decimal numbers, we created scientific notation, so there are floating-point numbers. But in the final analysis, everything is still inseparable from 0 and 1. A brief history of integers In C, int is almost the default type. Although the compiler may issue a warning, in many cases you can still write code like this: main(void){return0;} From a technical point of view, this is equivalent to the following code: intmain(void){return0;}

C language functions include definitions, calls and declarations. Function definition specifies function name, parameters and return type, function body implements functions; function calls execute functions and provide parameters; function declarations inform the compiler of function type. Value pass is used for parameter pass, pay attention to the return type, maintain a consistent code style, and handle errors in functions. Mastering this knowledge can help write elegant, robust C code.

Data update problems in zustand asynchronous operations. When using the zustand state management library, you often encounter the problem of data updates that cause asynchronous operations to be untimely. �...

A solution to implement text annotation nesting in Quill Editor. When using Quill Editor for text annotation, we often need to use the Quill Editor to...
