Reset none activation function attributes and variables
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(none_actv_type), | intent(inout) | :: | this |
None activation type |
pure subroutine reset_none(this) !! Reset none activation function attributes and variables implicit none ! Arguments class(none_actv_type), intent(inout) :: this !! None activation type this%name = "none" this%scale = 1._real32 this%threshold = 0._real32 this%apply_scaling = .false. end subroutine reset_none