Questions tagged [gpt-3]

Use this tag with Generative Pre-trained Transformer 3 (GPT-3). Do not use with GPT-2 or the ad tagging library (GPT).

References:

GPT-3 (Wikipedia)

Related tags:

296 questions
1
vote
2 answers

Openai: `prompt` column/key is missing. Please make sure you name your columns/keys appropriately, then retry

I want to run GPT-3 for text classification. As the first step, I prepare data using openai CLI. I got a csv file which looks like as follow: I wrote following command for preparing the data: openai tools fine_tunes.prepare_data -f…
user2293224
  • 2,128
  • 5
  • 28
  • 52
1
vote
1 answer

GPT-3 long input posts for Question Answering

From my understanding, GPT-3 is "trained" for a specific task by including some labelled examples before the desired/test example. In Question Answering, this includes a context and a question. In this situation, the input prompt can become long.…
1
vote
1 answer

GPT-3 question answering based on keywords

I am currently getting accustomed to GPT3, and I am trying to generate questions from a text by also inputting some keywords from that text. Ideally, they would be the answers to that question. What I tried was to input the text, and simply write…
futuredataengineer
  • 442
  • 1
  • 3
  • 14
1
vote
0 answers

How do I make "msg.content" constantly get new strings added to it instead of replaced?

var collector = new MessageCollector(message.channel, filter, { max: 10, time: 60000, }) collector.on("collect", (msg) => { console.log(msg.content) openai.Completion.create({ …
bruh
  • 23
  • 2
1
vote
1 answer

A way to make GPT-3's "davinci" converse with a user(s) through a bot in discord using discord.js?

var collector = new MessageCollector(message.channel, filter, { max: 10, time: 60000, }) start_sequence = "\nAI: " retart_sequence = "\nHuman: " collector.on("collect", (msg) => { console.log(msg.content) …
bruh
  • 23
  • 2
1
vote
0 answers

Mycin like diagnosis system using gpt3 model

I wondering if we can build a Mycin like expert system using most advanced deep learning model like GPT3 by fine tuning medical domain knowledge. We build 40 years ago Mycin using symbolic approach but I am not sure it is possible now.
youngtackpark
  • 1,475
  • 3
  • 12
  • 14
1
vote
2 answers

how can i use openai's gpt 3 to find alternate spellings of bad words?

so, i am making an auto mod discord bot that finds alternate spellings of bad words. i tried using regex to find them but found many many false positives. so i thought about using openai's gpt-3 to do so, as i saw a screenshot of someone using it…
potato123
  • 73
  • 1
  • 5
1
vote
1 answer

How to fix the error : "cannot import name 'GPT' from "gpt"

When I run the code below in Google Colab, I get the following error. Note: I've already installed gpt using pip (!pip install gpt). code from gpt import GPT from gpt import Example' Error cannot import name 'GPT' from 'gpt'…
kumaran T
  • 27
  • 2
  • 8
1
vote
2 answers

Access OpenAI (json) API from R

I want to access the OpenAI API with the following curl command from R: curl https://api.openai.com/v1/engines/davinci/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer YOUR_API_KEY" \ -d '{"prompt": "This is a test",…
vonjd
  • 4,202
  • 3
  • 44
  • 68
1
vote
3 answers

Changes in GPT2/GPT3 model during few shot learning

During transfer learning, we take a pre-trained network and some observation pair (input and label), and use these data to fine-tune the weight by use of backpropagation. However, during one shot/few shot learning, according to this paper- 'Language…
1
vote
1 answer

Huggingface Transformer Priming

I am trying to replicate the results of this demo, whose author primes GPT-3 with just the following text: gpt.add_example(Example('apple', 'slice, eat, mash, cook, bake, juice')) gpt.add_example(Example('book', 'read, open, close, write…
Mobeus Zoom
  • 598
  • 5
  • 19
1
vote
1 answer

Build a model that answers question from dataset using GPT3

I am trying to build a chat bot, that given some text corpus, will answer questions when we ask something from that text. I have heard GPT3 is a beast and requires minimum training. Are there any links/ tutorial/github repo's that will help me get…
Nidutt
  • 185
  • 2
  • 17
0
votes
0 answers

I need feedback on my new python module for chatbots

I made a python module to create chatbots using the openai api without the need for lots of code. Here is the link to my github repo:here The module is a object based system that automatically keeps track of the chat log. I need some feedback on the…
0
votes
1 answer

How to fine tune gpt 3.5 on conversational data?

My app provides emotional support to our end users. We have listeners who listen to the end users via chat. Now I have chat threads of one particular listener let say A, and he had talked with 1000 users. I want to fine tune my own model using gpt-3…
mobeen
  • 158
  • 1
  • 10
0
votes
0 answers

issue faced when trying to finetune openai gpt3.5-turbo model with api_base

I am trying to finetune gpt3.5-turbo model when using import openai import os openai.api_key = os.getenv("OPENAI_API_KEY") tester = openai.File.create(file=open("testdata.jsonl",'rb'), purpose="fine-tune") it works perfectly. I can proceed and get…
maswadkar
  • 1,502
  • 1
  • 13
  • 23