OpenAI Models 알아봅시다

Link: https://platform.openai.com/docs/models/overview

OpenAI 모델을 이용하여 커스터마이징 서비스를 만들려면 OpenAI에서 제공되는 모델에 대해서 알 필요가 있습니다. 이 분야가 워낙 빠르게 변하다 보니 현재 모델이 또 언제 바뀔지 모르지만 23년 4월 기준으로 이용 가능한 모델을 살펴 보겠습니다.

ModelsDescription
GPT-4 (Limited beta)A set of models that improve on GPT-3.5 and can understand as well as generate natural language or code
GPT-3.5A set of models that improve on GPT-3 and can understand as well as generate natural language or code
DALL·E (Beta)A model that can generate and edit images given a natural language prompt
Whisper (Beta)A model that can convert audio into text
EmbeddingsA set of models that can convert text into a numerical form
ModerationA fine-tuned model that can detect whether text may be sensitive or unsafe
GPT-3A set of models that can understand and generate natural language
Codex (Deprecated)A set of models that can understand and generate code, including translating natural language to code

이 모델 중에서 우리가 관심을 가지고 있는 모델은 GPT-3.5 와 Whisper 이고, 이를 활용하여 GPT기반 커스터마징 인공지능 챗봇을 빠른 시간에 만드는 것입니다.

Leave a Reply

Your email address will not be published. Required fields are marked *

인기 글

Ubuntu 22.04 LTS에 Python 3.8 or 3.9 설치 방법
서버 : Vultr 클라우드OS: Ubuntu 22.04 LTS사용자 계정 생성하여 설치 진행함1. Start with the system updatesudo apt update...
오라클 클라우드 OCI 가입 드디어 성공 했습니다 (상세 후기)
2023년 2월 16일에 ‘오라클 클라우드 지급 검증 실패 글‘을 남긴 적이 있습니다.그 때 검색을 통해 해결 방법을 찾아 보았고, 당시 성공했던 분들의...
WSL2/Ubuntu 22.04 LTS에서 Jupyter notebook 실행하기
WSL2 Ubuntu에서 Jupyter notebook(Jupyter Lab) 설치는 다음과 같습니다.$ pip install jupyter $ pip install jupyterlab단,...
워드프레스 글 또는 페이지 클릭 시 특정 URL로 이동하는 방법
워드프레스의 글 또는 페이지 클릭 시 특정 사이트로 이동하고 싶을 때가 있습니다. 이 때 활용하기 좋은 워드프레스 플러그인으로서 다음과 같은 Page Links To 가 있습니다.      Page...
WSL2/Ubuntu 22.04 LTS에 Anaconda 설치 
WSL2/Ubuntu 환경에서 Python 버전별로 가상환경을 만드는 방법 중 그나마 Anaconda 방법이 좋은 것 같네요. 설치 방법은 간단합니다.1. apt update사용자...