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 update sudo apt update...
오라클 클라우드 OCI 가입 드디어 성공 했습니다 (상세 후기)
2023년 2월 16일에 ‘오라클 클라우드 지급 검증 실패 글‘을 남긴 적이 있습니다. 그 때 검색을 통해 해결 방법을 찾아 보았고, 당시 성공했던 분들의 후기...
AWS 인스턴스 유형 변경 방법
AWS 인스턴스 유형을 변경하기 위한 방법에는 다음 2가지가 있습니다.   1. 첫 번째 방법 AMI 이미지 생성 후 해당 이미지를 복원하여 신규 EC2 인스턴스를 생성하는...
카페24 호스팅 사용 중 해외에서 워드프레스 홈페이지 접속이 되지 않는 경우
주말에 한 클라이언트로부터 “중국, 대만, 인도 업체에서 홈페이지 접속이 되지 않는다는 연락이 왔는데, 어떻게 된 것인지 확인을 좀 해 달라”는 긴급 연락을 받았습니다....
WSL2/Ubuntu 22.04 LTS에서 Jupyter notebook 실행하기
WSL2 Ubuntu에서 Jupyter notebook(Jupyter Lab) 설치는 다음과 같습니다. $ pip install jupyter $ pip install jupyterlab...