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