If I deploy a model to table using,
model.deploy(path='/path/to/dir', output_format='table')
it produces 3 tables
modelname.sashdat
modelname_weights.sashdat
modelname_weights_attr.sashdat
If I try to load these tables with
s.table.loadTable it will complain that it can't find modelname.ATTRS.sashdat , if I rename the attributes table to what it expects it will work.
modeldetect = s.table.loadTable(caslib='scz', path='detectmobile/Model_M43t70.sashdat', loadattrs=True)
modeldetectname = s.table.loadTable(caslib='scz',casout={'name':'mobiledetect'}, path='detectmobile/Model_M43t70_weights.sashdat')