Generating from a finetuned GPT 3.5 Turbo is 8x the cost of generating from the base model, so you really have to be in the “reduce prompt size by 90%” bucket they mention to get cost effectiveness out of it.
8x is a big gap. I feel that it might be better to just use few-shot prompting and supply some examples (not applicable to every use case ofc) every prompt to steer the output. But it's worth experimenting with at least. Edit: no function calling (until later this fall) too. That's most of my usage right now so I'll pass. Curious on what the verdict on the OAI finetunes are. I remember reading this thread which indic…
GPT-3.5 Turbo fine-tuning and API updates
121–130 of 244 posts
Re: GPT-3.5 Turbo fine-tuning and API updates
#122Earlier quoted context omitted.
Could you elaborate? It may not be a replacement, but I can think of a few use cases where RAG could be avoided entirely by having the model be fine tuned on the right dataset.
Speaking of RAG, does anyone know of a Python library that (hopefully) doesn't need a server, that can do embeddings, along with an example? I want to do RAG in Python, and I can wrangle the prompt to where I want it, but I have no idea how to basically search for relevant documents with embeddings.
RAG is straightforward but i improve it by generating extra keywords to help the search. I also add extra metadata filtering to return both technical documentation and more fluffy sales and marketing stuff. IMO, semantic search alone might not be the best, and I want to also add keyword search.
I think the thing most people will struggle with is prepping the documents. Chunking them to the best token count for your use case for example.
Re: GPT-3.5 Turbo fine-tuning and API updates
#123Re: GPT-3.5 Turbo fine-tuning and API updates
#124Earlier quoted context omitted.
This one seems to be a deal-breaker, if you already know what types of language you want, why would you want openai moderating your parameter tuning set.
Why do you care at all, let alone "dealbreaker". You need a model specifically fine tuned towards something dangerous?
Re: GPT-3.5 Turbo fine-tuning and API updates
#125Earlier quoted context omitted.
Speaking of RAG, does anyone know of a Python library that (hopefully) doesn't need a server, that can do embeddings, along with an example? I want to do RAG in Python, and I can wrangle the prompt to where I want it, but I have no idea how to basically search for relevant documents with embeddings.
Here is my implementation used for my discord and slack bots. The logic for rag is the Shelby_agent module. RAG is straightforward but i improve it by generating extra keywords to help the search. I also add extra metadata filtering to return both technical documentation and more fluffy sales and marketing stuff. IMO, semantic search alone might not be the best, and I want to also add keyword search. I think the thin…
Re: GPT-3.5 Turbo fine-tuning and API updates
#126Judging by their code example ... one user can have only a single fine tuned model? I am speaking as an individual developer - nor an enterprise. But would ne hood to know answer to both types of accounts.
Re: GPT-3.5 Turbo fine-tuning and API updates
#127Earlier quoted context omitted.
Does the finetuned model reside on OpenAI's servers? If so, what privacy guarantees that openai won't utilize it later for expanding gpt5?
Yes they are stored on OpenAI's servers. The API calls are not used for model training per the TOS. However, not that I'm accusing OpenAI of anything, but there's no way to independently validate this. But their guarantee is clear for the API (the ChatGPT web app is different, but you can disable training if you give up the history feature). > At OpenAI, protecting user data is fundamental to our mission. We do not t…
Re: GPT-3.5 Turbo fine-tuning and API updates
#128Question about privacy: OpenAI doesn't use API calls to train their models. But do they or Microsoft still store the text? If so, for how long? Overall, I think this is great, and can't wait for the 16k fine-tuning.
We don’t do anything sneaky with the stored data; literally the only purpose is to be able to investigate possible trust and safety violations for a brief period after they occur.
Re: GPT-3.5 Turbo fine-tuning and API updates
#129As promised, they released GPT3.5 fine-tuning today. They opened GPT4 API access a few months ago. In a few months, they'll release GPT4 fine-tuning.
Many favor open source AI, and criticize OpenAI for not being open enough. But the most important thing is, OpenAI innovates. Fast.
Llama, Bard, FB's open source stuff is good but it's lightyears behind OpenAI. You have to credit them for that.
Re: GPT-3.5 Turbo fine-tuning and API updates
#130GPT 3.5 is so bad it's useless to me - for writing it's too repetitive of the same kind of jargon, for coding it's wrong way too often. The NLP is also worse, I have to be more explicit. It's just an average chat bot IMO. GPT 4 @ $20/mo. is significantly better at everything, I use it for doing stuff in Angular lol - when you have an AI explaining the why behind everything, this over-engineered mess of a framework st…
Use code interpreter to upload your files and prompt it to ask you a serires of questions to know what to do next