File size: 1,177 Bytes
dc4db28 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
{ "name": "fine_tune_model2", "description": "Fine-tunes a machine learning model using provided training and validation datasets.", "strict": false, "parameters": { "type": "object", "required": [ "files", "model" ], "properties": { "files": { "type": "array", "items": { "type": "object", "required": [ "name", "path", "role" ], "properties": { "name": { "type": "string", "description": "Name of the file" }, "path": { "type": "string", "description": "Path to the file on the server" }, "role": { "type": "string", "description": "Role of the file (training/validation)" } }, "additionalProperties": false }, "description": "List of files used for training and validation" }, "model": { "type": "string", "description": "Identifier for the model to be fine-tuned" } }, "additionalProperties": false } } |