Baiju Meswani
Baiju Meswani
This pull request adds an API for registering a scheduler with the training session. ```cc // c api OrtTrainingSession* session; g_ort_training_api->CreateTrainingSession(env, session_options, checkpoint_state, training_model.c_str(), eval_model.c_str(), optimizer_model.c_str(), &session)); // Set the...
The env variable needs to be propagated to the docker image to build the whl without the local version.
This PR raises a warning to the user informing them that the `ORTTrainer` class is deprecated and that it will be removed in ort release 1.14. Users should switch to...
This pull request introduces C++ apis for on-device training scenarios. The pull request also updates the existing sample trainer to use the new C++ interface. Usage of the api ```cc...
When using tf2onnx to convert the tf model for training, we would like to disable some of the optimizations. For example, we don't want to fold constants since folding constants...