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

github.com/marian-nmt/sentencepiece.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaku Kudo <taku910@users.noreply.github.com>2018-05-01 13:16:01 +0300
committerGitHub <noreply@github.com>2018-05-01 13:16:01 +0300
commitdfc84f1288d5c2f4281641755026be0e166576ea (patch)
treeefe57959aa7f1b93148e0af881d3e4baa9b00410 /README.md
parentc0d9a5d2630530c9395c784b7f2c1c21e06bb7f4 (diff)
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index cdb73a4..c6c8570 100644
--- a/README.md
+++ b/README.md
@@ -94,7 +94,7 @@ To enable subword regularization, you would like to use the SentencePiece librar
```
>>> import sentencepiece as spm
>>> s = spm.SentencePieceProcessor()
->>> s.Load('newm.model')
+>>> s.Load('spm.model')
>>> for n in range(5):
... s.SampleEncode('New York', -1, 0.1)
...