/** * Project : AMDA-NG * Name : MLModelObject.js * Description : * @class amdaModel.MLModelObject * @extends amdaModel.AmdaObject * * @author benjamin * @version $Id: MLModelObject.js 1719 2022-01-19 14:26:56Z benjamin $ ****************************************************************************** * FT Id : Date : Name - Description ****************************************************************************** */ Ext.define('amdaModel.MLModelObject', { extend: 'amdaModel.AmdaObject', fields : [ {name: 'name', type: 'string'}, {name: 'description', type: 'string'}, {name: 'output', type: 'auto'}, {name: 'args', type: 'auto'}, {name: 'hyperparameters', type: 'auto'}, {name: 'defaults', type: 'auto'}, ] });