The short answer is you need to use the Astore action set (or PROC ASTORE).
The dlExportModel action writes the table as an Astore (analytic store object). At this point the Astore table is still in memory. To download it to the client machine, use either the ASTORE.DOWNLOAD action or PROC ASTORE. Using the ASTORE action set and/or PROC ASTORE, you can also upload a saved model from client to server, describe the details of the model, and score data with the model.
The dlImportModel weights is really for importing weights from a model trained in Caffe or Keras.
... View more