CreateModel.ScriptCanvasNodeable.xml 1.1 KB

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScriptCanvas Include="Nodes/CreateModel.h" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <Class Name="CreateModel"
  4. QualifiedName="MachineLearning::CreateModel"
  5. PreferredClassName="Creates a new machine learning model"
  6. Category="MachineLearning"
  7. Description="Creates a new untrained machine learning model. All parameters will be initialized to random values.">
  8. <Input Name="In" DisplayGroup="In" Description="Parameters controlling the new model">
  9. <Parameter Name="Input neurons" Type="AZStd::size_t" Description="The number of input neurons for the model to have."/>
  10. <Parameter Name="Output neurons" Type="AZStd::size_t" Description="The number of output neurons for the model to have."/>
  11. <Parameter Name="Hidden layers" Type="MachineLearning::HiddenLayerParams" Description="The array of hidden layers to generate."/>
  12. <Return Name="Model" Type="MachineLearning::INeuralNetworkPtr" Shared="true"/>
  13. </Input>
  14. </Class>
  15. </ScriptCanvas>