Action Principale : check
| 1 | /* This example assumes the ONNX file is accessible from the CAS server */ |
| 2 | DATA casuser.onnx_model_blob (copies=0); |
| 3 | LENGTH onnx_model 8; |
| 4 | INFILE "/path/to/your/model.onnx" recfm=f lrecl=256; |
| 5 | INPUT onnx_model 8.; |
| 6 | RUN; |
| 7 | |
| 8 | PROC CAS; |
| 9 | TABLE.promote / name="onnx_model_blob" caslib="casuser"; |
| 10 | RUN; |