Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
syncrostone committed Oct 12, 2018
2 parents 765be7c + 069ad5b commit 4fcef49
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Code is written and upkept by: @davidbrandfonbrener @dbehrlic @ABAtanasov @syncr

- Numpy
- Tensorflow
- Python=2.7
- Python=2.7 or 3.6

For Demos:
- Jupyter
Expand All @@ -23,7 +23,8 @@ For Demos:

### Installation

git clone https://github.com/dbehrlich/PsychRNN.git
git clone https://github.com/dbehrlich/PsychRNN.git
cd PsychRNN
python setup.py install

#### Alternative Install
Expand Down Expand Up @@ -54,7 +55,7 @@ A minimal introduction to our package. In this simple introduction you can gener
model.build()
model.train(gen)

x,_,_ = gen.next()
x,_,_ = next(gen)

plt.plot(model.test(x)[0][0,:,:])

Expand Down Expand Up @@ -161,7 +162,7 @@ New models can be added by extending the RNN superclass, as in our examples of "

## Further Extensibility

If you with to modify weight initializations, loss functions or regularizations it is as simple as adding an additional class to "initializations.py" describing your preferred initial weight patterns or a single function to "loss_functions.py" or "regularizations.py".
If you wish to modify weight initializations, loss functions or regularizations it is as simple as adding an additional class to "initializations.py" describing your preferred initial weight patterns or a single function to "loss_functions.py" or "regularizations.py".

### Backend

Expand Down

0 comments on commit 4fcef49

Please sign in to comment.