Skip to content

Commit

Permalink
Merge pull request #10 from ixaxaar/hidden_layers
Browse files Browse the repository at this point in the history
Test travis build
  • Loading branch information
Russi Chatterjee authored Oct 29, 2017
2 parents d1763af + 7631472 commit f8fc2f5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Differentiable Neural Computer, for Pytorch

[![Build Status](https://travis-ci.org/ixaxaar/pytorch-dnc.svg?branch=master)](https://travis-ci.org/ixaxaar/pytorch-dnc) [![PyPI version](https://badge.fury.io/py/dnc.svg)](https://badge.fury.io/py/dnc)

This is an implementation of [Differentiable Neural Computers](http://people.idsia.ch/~rupesh/rnnsymposium2016/slides/graves.pdf), described in the paper [Hybrid computing using a neural network with dynamic external memory, Graves et al.](https://www.nature.com/articles/nature20101)

## Install
Expand Down
5 changes: 2 additions & 3 deletions test/test_gru.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
import os
import math
import time
sys.path.append('./src/')
sys.path.insert(0, os.path.join('..', '..'))
sys.path.insert(0, '.')

from dnc.dnc import DNC
from dnc import DNC
from test_utils import generate_data, criterion


Expand Down
5 changes: 2 additions & 3 deletions test/test_lstm.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
import os
import math
import time
sys.path.append('./src/')
sys.path.insert(0, os.path.join('..', '..'))
sys.path.insert(0, '.')

from dnc.dnc import DNC
from dnc import DNC
from test_utils import generate_data, criterion


Expand Down
5 changes: 2 additions & 3 deletions test/test_rnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
import os
import math
import time
sys.path.append('./src/')
sys.path.insert(0, os.path.join('..', '..'))
sys.path.insert(0, '.')

from dnc.dnc import DNC
from dnc import DNC
from test_utils import generate_data, criterion


Expand Down

0 comments on commit f8fc2f5

Please sign in to comment.