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
gaoqiong
lm-evaluation-harness
Commits
1b604e16
"git@developer.sourcefind.cn:modelzoo/qwen_lmdeploy.git" did not exist on "86e70591ac12ed8551aa4dc433361958ffa79e07"
Commit
1b604e16
authored
Apr 30, 2023
by
Nikhil Pinnaparaju
Browse files
Use EOS token as PAD token to get rid of huggingface model warning
parent
dd9fb896
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
lm_eval/models/gpt2.py
lm_eval/models/gpt2.py
+1
-2
No files found.
lm_eval/models/gpt2.py
View file @
1b604e16
...
@@ -112,8 +112,7 @@ class HFLM(BaseLM):
...
@@ -112,8 +112,7 @@ class HFLM(BaseLM):
generation_kwargs
=
{
'do_sample'
:
False
,
'max_length'
:
max_length
}
generation_kwargs
=
{
'do_sample'
:
False
,
'max_length'
:
max_length
}
if
eos_token_id
is
not
None
:
if
eos_token_id
is
not
None
:
generation_kwargs
[
'eos_token_id'
]
=
eos_token_id
generation_kwargs
[
'eos_token_id'
]
=
eos_token_id
return
self
.
gpt2
.
generate
(
context
,
**
generation_kwargs
)
return
self
.
gpt2
.
generate
(
context
,
pad_token_id
=
eos_token_id
,
**
generation_kwargs
)
# for backwards compatibility
# for backwards compatibility
GPT2LM
=
HFLM
GPT2LM
=
HFLM
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