Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
3,795 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm having some trouble preparing my dataset for fine-tuning my text classification model in Azure OpenAI. I've read through the preparation guide, but I'm still not sure how to create a dataset with multiple labels. Is it okay to use the code json below? Thank you
{
"prompt":"Subject: Update my address\nFrom:Joe Doe\nTo:******@ourcompany.com\nDate:2021-06-03\nContent:Hi,\nI would like to update my billing address to match my delivery address.\n\nPlease let me know once done.\n\nThanks,\nJoe\n\n###\n\n",
"category":["Billing","Delivery"]
}
@Thanon Leela You can try the following sample from the Open AI for finetuning the multi classification. Here is the similar thread on the Open AI for preparing data for multi classification. https://community.openai.com/t/gpt3-finetuning-for-multilabel-classification/19105