Hello, I think it would be great benefit if ArcGIS Pro Deep Learning Tools become able to read model files like .pt or pickle files without the need to hardcode this to convert these formats to .emd first. Thanks.
ArcGIS tools already support .pt (PyTorch) and other pickled model files. To use externally trained models within ArcGIS, you'll need to package them into a Deep Learning Package (.dlpk). This is a structured archive containing the model definition, weights, and necessary configuration.
The process typically involves:
Creating an .emd (Esri Model Definition) file – This file describes the model's inputs, outputs, and configuration parameters.
Organizing the required files – Arrange the .emd file, model weights (e.g., .pt), and any supporting files in the correct directory structure.
Packaging everything into a .dlpk – Compress the structured directory into a .dlpk file for use in ArcGIS.