Skip to content

Commit a715e66

Browse files
committed
Fix spacing and wrapping
1 parent dca7489 commit a715e66

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

transformer-intro/README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ python -m venv .venv
3333
source .venv/bin/activate
3434
pip install -r requirements.txt
3535
```
36-
You can skip the first two of these commands if you don't want to use a virtual environment.
36+
You can skip the first two of these commands if you don't want to use a virtual
37+
environment.
3738

3839
Next we'll install Marian!
3940

@@ -46,7 +47,10 @@ cd marian-dev
4647
```
4748

4849
### Compile
49-
To compile Marian we need to ensure we have the required packages. The list of requirements can be found in the [documentation][install_marian]. Since we're using SentencePiece, we also need to make sure we have satisfy its[requirements][install_sentencepiece] too.
50+
To compile Marian we need to ensure we have the required packages. The list of
51+
requirements can be found in the [documentation][install_marian]. Since we're
52+
using SentencePiece, we also need to make sure we have satisfy its
53+
[requirements][install_sentencepiece] too.
5054

5155
Then we can compile with
5256
```shell
@@ -58,7 +62,7 @@ cmake --build .
5862

5963
To speed up compilation we can use ```cmake --build . -j 8``` to run 8 tasks simultaneously.
6064

61-
If it succeeded running
65+
If it succeeded, running
6266
```shell
6367
./marian --version
6468
```

0 commit comments

Comments
 (0)