Model Output Path Description

After a model conversion task is completed, ModelArts exports the converted model to a specified OBS path. The path varies according to the conversion task and chip, including the Ascend chip and ARM or GPU.

Ascend Chip

The following describes the output path of the model run on the Ascend chip after conversion:

  • For Caffe-based models, the output path must comply with the following specifications during model conversion:
    |
    |---xxxx.om           Converted model to run on the Ascend chip. The model file name extension is .om.
    |---job_log.txt       Conversion log file
  • For TensorFlow-based models, the output path must comply with the following specifications during model conversion:
    |
    |---xxxx.om           Converted model to run on the Ascend chip. The model file name extension is .om.
    |---job_log.txt       Conversion log file

ARM or GPU

The following describes the output path of the model run on the ARM or GPU after conversion:

The format for the model run on the GPU is as follows:
|
|---model   
        |---xxx.pb           Converted model to run on the GPU. The model file name extension is .pb.
|---job_log.txt              Conversion log file

The format for the model run on the ARM is as follows:

|
|---model 
        |---xxx.tflite         Converted model to run on the ARM. The model file name extension is .tflite.
        |---config.json        Parameters required for using the .tflite file after 8-bit conversion
|---job_log.txt        Conversion log file