Hello All, I am trying to save my model build using SWAT python package into the sas model manager using the sasctl package, when I am saving the sklearn model it is saving into model manager without any issues but when I am trying to save the model which is build in CAS using the CAS Actions it is giving me a error message which is as follows. NOTE: Added action set 'astore'.
ERROR: The table DECITION_TREE_ATTR_MODEL cannot be operated on through this interface.
ERROR: Action describe failed.
ERROR: The action stopped due to errors Code I am using, model_sas_viya_dt = conn.CASTable("decition_tree_attr_model") with Session('https://servername', username='*****', password='****'): attr_dt = register_model(model_sas_viya_dt, 'Decision_Tree_SAS_VIYA', 'Comparison', force=True) * decition_tree_attr_model this the model built using the CAS actions.
... View more