Node¶
Constructor¶
|
Primary data structure for reverse mode automatic differentiation. |
Dunder Methods¶
|
Return the sum of self and other. |
|
Return the sum of two numbers, when the left operand is not a Node |
|
Returns the difference between self and other. |
|
Return the difference between two numbers, when the left operand is not Node |
|
Return the product of self and other. |
|
Return the product of two numbers, when the left operand is not a Node |
|
Return the quotient of self and other. |
|
Return the quotient of two numbers, when the left operand is not a Node. |
|
Return self to the power of other. |
|
Return other to the power of self if other is not a Node. |
Return negation of self. |
|
|
Return element-wise (value and derivative) less than comparison of self and other. |
|
Return element-wise (value and derivative) greater than comparison of self and other. |
|
Return element-wise (value and derivative) less than or equal comparison of self and other. |
|
Return element-wise (value and derivative) greater than or equal comparison of self and other. |
|
Return element-wise (value and derivative vector) equality comparison of self and other. |
|
Return element-wise (value and derivative vector) inequality comparison of self and other. |