Skip to content

Commit

Permalink
editorial updates README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikStrobelt committed Feb 7, 2021
1 parent 16ea1c6 commit 748c309
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Also check out our new work on Sequence-to-Sequence models on [github](https://g
<img src="docs/img/teaser_V2.png" />
</div>

## Changes in V2.1
- update to Python 3.7++ (thanks to @nneophyt)

## Changes in V2
- new design and server-backend
- discrete zooming for hidden-state track
Expand All @@ -21,7 +24,7 @@ Also check out our new work on Sequence-to-Sequence models on [github](https://g

## Install

Please use python 3.7 to install LSTMVis.
Please use **python 3.7 or later** to install LSTMVis.

Clone the repository:

Expand All @@ -32,10 +35,9 @@ git clone https://github.com/HendrikStrobelt/LSTMVis.git; cd LSTMVis
Install python (server-side) requirements using [pip](https://pip.pypa.io/en/stable/installing/):

```bash
python3.7 -m venv venv3.7
source venv3.7/bin/activate
python -m venv venv3
source venv3/bin/activate
pip install -r requirements.txt
deactivate
```

<!--Install [bower](https://bower.io/) (client side) requirements:
Expand All @@ -53,7 +55,7 @@ Download & Unzip example dataset(s) into `<LSTMVis>/data/05childbook`:
start server:

```bash
source venv3.7/bin/activate
source venv3/bin/activate
python lstm_server.py -dir <datadir>
```

Expand Down

0 comments on commit 748c309

Please sign in to comment.