blob: 617ade9ba8c3c895ce2371d06cb4af2d654b1dfc [file] [log] [blame]
import torch
from .Threshold import Threshold
class ReLU(Threshold):
def __init__(self, inplace=False):
super(ReLU, self).__init__(0, 0, inplace)