Is it possible to fine-tune with custom data to output JSON?
Only the older completion models (davinci, curie, babbage, ada) are avaialble for fine-tuning.
111–120 of 258 posts
Is it possible to fine-tune with custom data to output JSON?
Only the older completion models (davinci, curie, babbage, ada) are avaialble for fine-tuning.
Engineering of cognitively advanced multiagent systems will become the area of research of this century / multiple decades.
GPT-GPT > GPT-API in terms of power.
The space of possible combinations of GPT multiagents goes beyond imagination since even GPT-4 goes so.
Multiagent systems are best modeled with signal theory, graph theory and cognitive science.
Of course "programming" will also play a role, in sense of abstractions and creation of systems of / for thought.
Signal theory will be a significant approach for thinking about embedded agency.
Complex multiagent systems approach us.
Early prototypes of software can use simple prompts like this one to become interactive. Running an LLM every time someone clicks on a button is expensive and slow in production, but probably still ~10x cheaper to produce than code.
Hah wow... no. Definitely not.
Actually I'm looking to take GPT-4 output and create file formats like keynote presentations, or pptx. Is that currently possible with some tools?
apparently pandoc also supports pptx so you can tell GPT4 to output markdown, then use pandoc to convert that markdown to pptx or pdf.
It works pretty good. You define a few “function” and enter a description on what it does, when user prompts, it will understand the prompt and tell you which likely “function” to use, which is just the function name. I feel like this is a new way to program, a sort of fuzzy logic type of programming
Yes and no. While the choice of which function to call is dependent on an llm, ultimately, you control the function itself whose output is deterministic.
Even today, given an api, people can choose to call or not call based on some factor. We don’t call this fuzzy logic. E.g., people can decide to sell or buy stock through an api based on some internal calculations - doesn’t make the system “fuzzy”.
Earlier quoted context omitted.
99% of the time is still super frustrating when it fails, if you're using it in a consumer facing app. You have to clean up the output to avoid getting an error. If it goes from 99% to 100% JSON that is a big deal for me, much simpler.
Yup. Is there a good/forgiving "drunken JSON parser" library that people like to use? Feels like it would be a useful (and separable) piece?
It works pretty good. You define a few “function” and enter a description on what it does, when user prompts, it will understand the prompt and tell you which likely “function” to use, which is just the function name. I feel like this is a new way to program, a sort of fuzzy logic type of programming
> fuzzy logic Yes and no. While the choice of which function to call is dependent on an llm, ultimately, you control the function itself whose output is deterministic. Even today, given an api, people can choose to call or not call based on some factor. We don’t call this fuzzy logic. E.g., people can decide to sell or buy stock through an api based on some internal calculations - doesn’t make the system “fuzzy”.
Earlier quoted context omitted.
Yup. Is there a good/forgiving "drunken JSON parser" library that people like to use? Feels like it would be a useful (and separable) piece?
Honestly, I suspect asking GPT-4 to fix your JSON (in a new chat) is a good drunken JSON parser. We are only scraping the surface of what's possible with LLMs. If Token generation was free and instant we could come up with a giant schema of interacting model calls that generates 10 suggestions, iterates over them, ranks them and picks the best one, as silly as it sounds.