Help Center> ModelArts> FAQs> Training Jobs> Compiling the Training Code> How Do I Obtain Training Job Parameters from the Boot File of the Training Job?
Updated on 2024-06-15 GMT+08:00

How Do I Obtain Training Job Parameters from the Boot File of the Training Job?

Training job parameters can be automatically generated in the background or you can enter them manually. To obtain training job parameters:

  1. When creating a training job, enter the name of Input (generally set to data_url) and specify a data path to the training input, and enter the name of Output (generally set to train_url) and specify a data path to the training output.
  2. After the training job is executed, you can click the job name in the training job list to view its details. You can obtain the parameter input mode from logs, as shown in Figure 1.
    Figure 1 Viewing logs
  3. To obtain the values of train_url, data_url, and test during training, add the following code to the boot file of the training job:
    import argparse
    parser = argparse.ArgumentParser()
    parser.add_argument('--data_url', type=str, default=None, help='test')
    parser.add_argument('--train_url', type=str, default=None, help='test')
    parser.add_argument('--test', type=str, default=None, help='test')

Compiling the Training Code FAQs

more