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
0
votes
1 answer

Using GPT-3 to identify relationships in a corpus

I have a corpus of 15K news articles. I would like to train a GPT model (3 or 4) to ingest these texts and then output how the locations, events, actions, participants, and things described in the texts are related to one another. So if the corpus…
Steve
  • 945
  • 3
  • 13
  • 22
0
votes
1 answer

Do nodes in List Index come with embedding vectors in LlamaIndex?

One can run an embedding-based query on List Index (link). For that nodes in the List Index should be supplied with embedding vectors. What is then the difference between the List Index and the Vector Store Index? I thought that the distinctive…
Roman
  • 124,451
  • 167
  • 349
  • 456
0
votes
0 answers

How to prepare dataset with multiple answers for single question to train the GPT3/davinci model

I am trying to fine-tune the GPT model, and for that, I have 3 columns: context, question, and answer. but I have multiple answers to a question. I have repeated question text for multiple answers, what is the best way to prepare an optimized…
0
votes
0 answers

Unable to get word by word response from GPT API

I am trying to get the response from my gpt api, word by word like chatGPT generates and not all at once. I have all other things working, getting the response as expected just not in chunks . I am able to print the partial response in console but…
ashrth
  • 63
  • 7
0
votes
2 answers

Train gpt-3 on email conversations

I have to train gpt-3 on email data, so that the support team can get a quick answer from a chat-bot, for questions that were asked before by customers. There are email conversations between customers and the support team (Customer1 ask question,…
mahdi
  • 11
0
votes
0 answers

OpenAI API Finetune Model - no response

I am trying to learn to finetune GPT models, and am most familiar with working with Python using IDEs (eg Spyder). Would anyone know why the following code in my IDE (Spyder) gives no response, no tracebacks, no errors? I do not see any sign of the…
bitterjam
  • 117
  • 11
0
votes
0 answers

how to create prompt and completion for numerical dataset in GPT3 model

i am trying to customize GPT 3 model for sales domain. Is it possible to fine tune gpt3 model using a dataset which has numerical and categorical columns. If then how can we create prompt and completion for that particular dataset. how to create…
Dinesh
  • 9
  • 2
0
votes
1 answer

OpenAI GPT-3 API: Why do I get different, non-related random responses to the same question every time?

I am using the “text-davinci-003” model and I copied the code form the OpenAI playground, but the bot keeps giving me random response to a simple “Hello” everytime. This is the code I am using : response: dict =…
Aman Grover
  • 45
  • 1
  • 10
0
votes
0 answers

In NLP, how can we use text query to fetch data from Tabular format data with thousands of rows?

Let's say we have an excel of thousands of rows. We want to fetch some data based on the query entered in pure text format. Google's TAPAS model does not work on beyond few 100 rows. Is there any other way to do this. Let's say there is an input…
0
votes
1 answer

openai unknown command 'tools'

I am learning gpt fine-tuning I successfully ran this command: pip install --upgrade openai I couldn't run this command: export OPENAI_API_KEY="sk-xxxxxxxxxxxxxx" Error: export : The term 'export' is not recognized as the name of a cmdlet,…
0
votes
1 answer

Does openai GPT finetuning consider the prompt in the loss function?

OpenAI api includes a finetuning service that divides the task in "prompt" and "completion" https://platform.openai.com/docs/guides/fine-tuning The documentation says that the accuracy metrics are calculated respect to the completion. But for the…
arivero
  • 777
  • 1
  • 9
  • 30
0
votes
0 answers

Incompatibilty between styled-components and react-simple-bot library

Hi I am trying to create a chatbot using Neo4j as a backend and GPT-3 as a translation tool for NL and CYPHER. I am following the tutorial in this webpage:…
0
votes
2 answers

OpenAI GPT-3 API errors: 'text' does not exist TS(2339) & 'prompt' does not exist on type 'CreateChatCompletion' TS(2345)

import openai from "./zggpt"; const query = async (prompt:string, chatId:string, model:string) => { const res= await openai .createChatCompletion({ model, prompt, temperature: 0.9, top_p:1, …
0
votes
1 answer

OpenAI GPT-3 API: Which file formats can be used for fine-tuning?

As we are getting in to turbulent times of AI. I am as well spilling mine drop in to ocean. As I am pythonian, all attempts are done in python/anaconda. Does anybody have already some experience in "data formats" passable to GPT family of AIs? In…
Jan M.
  • 15
  • 6
0
votes
1 answer

Using sliding windows to evaluate sentiment for text groupings

I am trying to create a sliding window to evaluate sentiment on groupings of utterances within a conversation, with the goal of: Evaluating the sentiment of a single utterance in a conversational grouping Evaluating a grouping of sentiment based on…
Ja4H3ad
  • 51
  • 1
  • 6