Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/marian-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Nail <graemenail.work@gmail.com>2022-02-23 12:46:56 +0300
committerGraeme Nail <graemenail.work@gmail.com>2022-02-23 12:46:56 +0300
commita715e662d04bf8905d948658927aee057ac26347 (patch)
treeaae766bb4e709c92e4dd7affead17479ad642df7
parentdca7489b8b4fa5f93e0d92ee3a7d5e548fb28554 (diff)
Fix spacing and wrapping
-rw-r--r--transformer-intro/README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/transformer-intro/README.md b/transformer-intro/README.md
index fe8a35b..b6e4893 100644
--- a/transformer-intro/README.md
+++ b/transformer-intro/README.md
@@ -33,7 +33,8 @@ python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
-You can skip the first two of these commands if you don't want to use a virtual environment.
+You can skip the first two of these commands if you don't want to use a virtual
+environment.
Next we'll install Marian!
@@ -46,7 +47,10 @@ cd marian-dev
```
### Compile
-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.
+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.
Then we can compile with
```shell
@@ -58,7 +62,7 @@ cmake --build .
To speed up compilation we can use ```cmake --build . -j 8``` to run 8 tasks simultaneously.
-If it succeeded running
+If it succeeded, running
```shell
./marian --version
```