FeedForward.ScriptCanvasNodeable.xml 967 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScriptCanvas Include="Nodes/FeedForward.h" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <Class Name="FeedForward"
  4. QualifiedName="MachineLearning::FeedForward"
  5. PreferredClassName="Feed forward"
  6. Category="MachineLearning"
  7. Description="Performs a feed-forward operation on the model to obtain a set of outputs given an input.">
  8. <Input Name="In" DisplayGroup="In" Description="Parameters controlling the feed forward operation" Hidden="True">
  9. <Parameter Name="Model" Type="MachineLearning::INeuralNetworkPtr" Description="The model to run a feed forward operation on."/>
  10. <Parameter Name="Activations" Type="AZ::VectorN" Description="The set of activation values to apply to the model (must match the models input count)."/>
  11. <Return Name="Output" Type="AZ::VectorN" Shared="true"/>
  12. </Input>
  13. </Class>
  14. </ScriptCanvas>