Why OPENAI GPT4 version answer is GPT3?

Denis Zheng 40 Reputation points
2024-02-27T05:29:51.2166667+00:00

User's image

I was testing the Openai service and noticed that when using the GPT4-32K model, when asked what version of GPT it was using, it answered GPT3. and when using Chatgpt Plus, it answered GPT4. why is there this discrepancy, is it a bug?Can Azure fix it?

Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
4,082 questions
0 comments No comments
{count} votes

Accepted answer
  1. navba-MSFT 27,540 Reputation points Microsoft Employee Moderator
    2024-02-27T07:03:28.5666667+00:00

    @Denis Zheng Welcome to Microsoft Q&A Forum, Thank you for posting your query here!

    The same issue is discussed in the Azure Open AI FAQ page. See here.

    When I ask GPT-4 which model it's running, it tells me it's running GPT-3. Why does this happen?

    Answer: Azure OpenAI models (including GPT-4) being unable to correctly identify what model is running is expected behavior.

    Why does this happen? Ultimately, the model is performing next token prediction in response to your question. The model doesn't have any native ability to query what model version is currently being run to answer your question. To answer this question, you can always go to Azure OpenAI Studio > Management > Deployments > and consult the model name column to confirm what model is currently associated with a given deployment name.

    The questions, "What model are you running?" or "What is the latest model from OpenAI?" produce similar quality results to asking the model what the weather will be today. It might return the correct result, but purely by chance. On its own, the model has no real-world information other than what was part of its training/training data. In the case of GPT-4, as of August 2023 the underlying training data goes only up to September 2021. GPT-4 wasn't released until March 2023, so barring OpenAI releasing a new version with updated training data, or a new version that is fine-tuned to answer those specific questions, it's expected behavior for GPT-4 to respond that GPT-3 is the latest model release from OpenAI.

    If you wanted to help a GPT based model to accurately respond to the question "what model are you running?", you would need to provide that information to the model through techniques like prompt engineering of the model's system message, Retrieval Augmented Generation (RAG) which is the technique used by Azure OpenAI on your data where up-to-date information is injected to the system message at query time, or via fine-tuning where you could fine-tune specific versions of the model to answer that question in a certain way based on model version. To learn more about how GPT models are trained and work we recommend watching Andrej Karpathy's talk from Build 2023 on the state of GPT.

    Hope this helps. If you have any follow-up questions, please let me know. I would be happy to help.

    ** Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.