Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
Fairseq
Commits
26f87c7d
Commit
26f87c7d
authored
Apr 11, 2018
by
Myle Ott
Browse files
Make dictionary size a multiple of 8
parent
7ee1d284
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
fairseq/dictionary.py
fairseq/dictionary.py
+11
-1
No files found.
fairseq/dictionary.py
View file @
26f87c7d
...
@@ -124,7 +124,6 @@ class Dictionary(object):
...
@@ -124,7 +124,6 @@ class Dictionary(object):
...
...
```
```
"""
"""
if
isinstance
(
f
,
str
):
if
isinstance
(
f
,
str
):
try
:
try
:
if
not
ignore_utf_errors
:
if
not
ignore_utf_errors
:
...
@@ -147,6 +146,17 @@ class Dictionary(object):
...
@@ -147,6 +146,17 @@ class Dictionary(object):
d
.
indices
[
word
]
=
len
(
d
.
symbols
)
d
.
indices
[
word
]
=
len
(
d
.
symbols
)
d
.
symbols
.
append
(
word
)
d
.
symbols
.
append
(
word
)
d
.
count
.
append
(
count
)
d
.
count
.
append
(
count
)
# apply padding so that the dictionary size is a nice round number
factor
=
8
padding
=
0
while
len
(
d
.
symbols
)
%
factor
!=
0
:
word
=
'madeupword{:04d}'
.
format
(
padding
)
d
.
indices
[
word
]
=
len
(
d
.
symbols
)
d
.
symbols
.
append
(
word
)
d
.
count
.
append
(
0
)
assert
len
(
d
.
symbols
)
%
factor
==
0
return
d
return
d
def
save
(
self
,
f
,
threshold
=
3
,
nwords
=-
1
):
def
save
(
self
,
f
,
threshold
=
3
,
nwords
=-
1
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment