Getting Started with the GPT-4 - API
OpenAI has some of the most powerful transformer engines in the world. One GPT-4 model can perform hundreds of tasks. GPT-3 can do many tasks it wasn't trained for.This section will use the API in Getting_Started_GPT_4_API.ipynb.
To use a GPT-3, go to OpenAI's website, https://openai.com/, and sign up.We can run the examples provided by OpenAI to get started. We are once again relying on assistants.
Running our first NLP task with GPT-4
Let's start using GPT-3 in a few steps.Go to Google Colab and open Getting_Started_GPT_4_API.ipynb
, which is the chapter directory of the book on GitHub.You do not need to change the hardware settings of the notebook. We are using an API, so we will not need much local computing power for the tasks in this section.The steps of this section are the same ones as in the notebook.Running an NLP is done in three simple steps:
Steps 1: Installing OpenAI and Step 2: Entering the API key
Steps 1 and 2 are the...