How to create custom fine-tune model for my use? how to do – Use cases and examples


Hi I’m facing to create write file format of my use case ,
here I need a custom fine-tune how to do
” for eg. have 100 or 200 Products table Like Cheese Pizza, Pepper chicken gravy, Coke, Pasta, Lemon juice, Apple juice, Falooda, Veg burger, Chicken burger, Sandwich …. when I send prompt like like send check my product matches and return only machetes products names an array format: My input text is “create order for me one lemon juice, five pasta, 4 coke, 2 apple juice, four bread and two water. Thank you” ,
I’m expecting output is “products=[ “lemon juice” => 1, “pasta” = 5, “coke” => 4, “apple juice” => 2 ]
Here eg. bread => 4 and water => 1 not in my products list so it have to skip .
how to crate a own data set file and model .how to write jsonl file all file?
{“messages”: [{“role”: “system”, “content”: [“Cheese Pizza”, “Pepper chicken gravy”, “Coke” , “Pasta” , “Lemon juice” , “Apple juice”, “Falooda” , “Veg burger” , “Chicken burger” , “Sandwich”], {“role”: “user”, “content”: “Check product availability and return match from only in this list”} }]}



Source link

Leave a Comment