1

Open AI, GPT and Chat GPT

Ever since Open AI arrived on the scene, access to a trained AI has become accessible to everyone.

  • GPT allows you to ask a chatbot to complete tasks, and to answer questions
  • Fine-tuning allows you to change the way the AI responds
  • Embedding allows you to use your own knowledge base
  • Dall-E allows you to generate images from text

In this course, you will learn very practical skills for using GPT. The skills can be used in the OpenAI playground or in programming code.


What you’ll learn

  • No-Code examples using OpenAI playground
  • Techniques to create, expand, rewrite, and summarize text for creative writing, articles and blogs using GPT
  • In depth Prompt Engineering with examples and Tips/Tricks
  • Understand what every fine tuning parameter does with recommended values
  • How to write code to call GPT and OpenAI using several different programming languages
  • How to generate, document, and explain code and SQL in plain english using CODEX
  • Deep dive into creating and uploading Fine Tuning sets to train GPT with your own data
  • How to use Embedding to search large documents and ask questions related to its content
  • How to use Embedding for Clustering and Classification to find hidden patterns
  • Create and modify images using DALL-E
  • Write your own chatbot using GPT
  • Best Safety Practices and Cost Saving Tips

Course Content:

Module1: What is OpenAI

  • Introduction
  • Quick Start Code Example
  • Text Completion High Level Overview
  • CODEX High Level Overview
  • What are Tokens?
  • DALL-E High Level Overview
  • Naming Conventions I Use in the Course

Module2: Prompt Engineering

  • Introduction to GPT Prompt Engineering
  • Improving GPT Prompts to get Better Responses
  • Recipe 1 : GPT Templating05:31
  • Recipe 1 : GPT Template Examples
  • Recipe 2 : Including Context or Knowledge in GPT Prompts

Module3: Writing Code
  • Getting Started
  • The Anatomy of a Request and Response
  • Testing in the Playground
  • Code Examples in a Range of Programming Languages
  • PHP Example without a Library
  • Powershell Example
  • Using Javascript Fetch and Cross Site Origin Issues

Module4: The Moderation Endpoint

  • Calling the Moderation Endpoint to Stay Safe and Interpreting the Results

Module5: Tweaking Prompt Parameter

  • Introduction to Completion Parameter
  • Quick Revision of a Code Example to call the AP
  • max_token
  • top_
  • temperatur
  • stop
  • best_of
  • suffix
  • ech
  • user