|
|
|
|
|
by jhoelzel
1231 days ago
|
|
the title in question is misleading and likely the negative feedback received you received is aimed at that. The primary objective of ChatGPT is not to serve as a finished product answering queries, but rather to undergo fine-tuning with respect to given prompts. This model is capable of utilizing a variety of sub-models and executing queries as necessary. Let's consider an example where a user inputs the sentence "What is the capital of France?"
This is how ChatGPT will answer you: > 1 Preprocessing: The chat interface processes the user's input and recognizes that the user is asking for the capital of a country. 2 Generation of prompt: Based on this information, the chat interface generates the following prompt: "The capital of France is __."
3 Input to GPT-3: The prompt and the user's input are fed into the GPT-3 model.
4 Generation of response: The GPT-3 model then generates a response based on the prompt and input, for example: "The capital of France is Paris."
5 Postprocessing: The response generated by the GPT-3 model is postprocessed by the chat interface to ensure that it is grammatically correct and in the correct format. The final response returned to the user is: "The capital of France is Paris."
What i mean by that is that of course you will be able to use smaller more efficient models to get faster, quicker results and what ChatGPT really is, is the world training it what prompts look like. The "GPT Part" is only used after heavy preprocessing i would not be surprised if it already knew how to use its smaller models itself =) |
|