aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nerv/examples/lmptb/lmptb/lmvocab.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/nerv/examples/lmptb/lmptb/lmvocab.lua b/nerv/examples/lmptb/lmptb/lmvocab.lua
index 2ad0e7e..7f512fd 100644
--- a/nerv/examples/lmptb/lmptb/lmvocab.lua
+++ b/nerv/examples/lmptb/lmptb/lmvocab.lua
@@ -1,3 +1,5 @@
+require 'lmptb.lmutil'
+
local Vocab = nerv.class("nerv.LMVocab")
local printf = nerv.printf
@@ -107,7 +109,7 @@ function Vocab:build_file(fn)
printf("%s Vocab building on file %s...\n", self.log_pre, fn)
local file = io.open(fn, "r")
while (true) do
- local list = self:read_line(file)
+ local list = nerv.LMUtil.read_line(file)
if (list == nil) then
break
else