OneHot.ScriptCanvasNodeable.xml 763 B

12345678910111213141516
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScriptCanvas Include="Nodes/OneHot.h" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3. <Class Name="OneHot"
  4. QualifiedName="MachineLearning::OneHot"
  5. PreferredClassName="One hot encoder"
  6. Category="MachineLearning"
  7. Description="One-hot encodes a value.">
  8. <Input Name="In" DisplayGroup="In" Description="Parameters controlling the one-hot encoding">
  9. <Parameter Name="value" Type="AZStd::size_t" Description="The value to encode."/>
  10. <Parameter Name="maxValue" Type="AZStd::size_t" Description="The maximum value possible."/>
  11. <Return Name="oneHot" Type="AZ::VectorN" Shared="true"/>
  12. </Input>
  13. </Class>
  14. </ScriptCanvas>