Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 336 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 336 Bytes

Pytorch Highway network

Highway network implemented in PyTorch.

Highway Equation

Usage

highway = Highway(input_size, num_layers, f=torch.nn.functional.relu)

# input is [batch_size, input_size] shaped tensor
out = highway(input)