@kushala gajengi The train API allows local files to be used for training. Currently, there is no documented example of this but it is pretty much similar to using the blob container but the path to the file should conform to unix/linux absolute path.
For example, after you setup your container using the steps in this document configure the required keys to your FR endpoint and after you validate the running container open the swagger URI http://localhost:5000/swagger locally you can use the train API with local files i.e for a configuration setting value of '/input' use a valid source path something like '/input/contosodataset'. All data to be trained is expected to be under the source folder or sub folders under it. Models are trained using documents that are of the following content type - 'application/pdf', 'image/jpeg', 'image/png', 'image/tiff'. Ref: API Documentation.
To use compose with REST API follow the steps in this thread or use the following in the body of the request.
{
"description": "Request contract for compose operation.",
"modelIds": ["model_guid","model_guid"],
"modelName": "Rohit123"
}
We hope the above response is useful. Please accept the same as answer if it helped you proceed further.