Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kefirski/pytorch_Highway
Highway network implemented in pytorch
https://github.com/kefirski/pytorch_Highway
highway-network python pytorch
Last synced: 29 days ago
JSON representation
Highway network implemented in pytorch
- Host: GitHub
- URL: https://github.com/kefirski/pytorch_Highway
- Owner: kefirski
- License: mit
- Created: 2017-03-04T07:17:03.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T17:03:17.000Z (over 7 years ago)
- Last Synced: 2024-05-23T06:50:35.597Z (7 months ago)
- Topics: highway-network, python, pytorch
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 80
- Watchers: 7
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pytorch Highway network
[Highway network](https://arxiv.org/abs/1505.00387) implemented in [PyTorch](http://www.pytorch.org).
![Highway Equation](images/highway.png)
## Usage
```python
highway = Highway(input_size, num_layers, f=torch.nn.functional.relu)# input is [batch_size, input_size] shaped tensor
out = highway(input)
```