Action Principale : check
| 1 | /* Este código es conceptual. Se necesita un modelo ONNX real para cargarlo. */ |
| 2 | PROC CAS; |
| 3 | LOADACTIONSET 'astore'; |
| 4 | file myFile; |
| 5 | myFile = file('/ruta/a/su/modelo.onnx', 'READ', 'RECFM=N'); |
| 6 | string onnx_blob; |
| 7 | read(myFile, onnx_blob); |
| 8 | close(myFile); |
| 9 | RUN; |