From 00feb9ccb9c14d0d809695626a66228540e05c62 Mon Sep 17 00:00:00 2001 From: ashishj1729 Date: Mon, 13 Jan 2025 14:44:10 +0530 Subject: [PATCH] Updating Model-url in docs Change-Id: I129f6e359da82a79a8adf83e093e3dded035616a Signed-off-by: ashishj1729 (cherry picked from commit 2ba19db24ab6018e5f2b86516a926fd919707397) --- docs/installation-guide.rst | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/installation-guide.rst b/docs/installation-guide.rst index 5f8d5e2..2161377 100755 --- a/docs/installation-guide.rst +++ b/docs/installation-guide.rst @@ -480,13 +480,19 @@ The Status of Trainingjob can be featched using the following API endpoint. Repl Obtain Model URL for deploying trained models --------------------------------------------- -URL for deployment can be obainted from AIMFW dashboard (Training Jobs-> Training Job status -> Select Info for a training job -> Model URL) -Or You can curl the following API endpoint to obtain Trainingjob Info and fetch model_url for deployment after training is complete. Replace with the ID of the training job. +You can curl the following API endpoint to obtain Trainingjob Info and fetch model_url for deployment after training is complete. Replace with the ID of the training job. .. code:: bash curl --location 'http://:32002/ai-ml-model-training/v1/training-jobs/' +OR you can download the model using Model_name, Model_version, Model_artifact_version as follows: + +.. code:: bash + + wget http://:32002/model////Model.zip + + Model-Retraining ---------------------------------------- A previously trained model can be retrained with different configurations/data as follows: -- 2.16.6