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
3d14707a
Unverified
Commit
3d14707a
authored
Feb 05, 2023
by
Stella Biderman
Committed by
GitHub
Feb 05, 2023
Browse files
Merge pull request #384 from jon-tow/gpt2-vocab-slice
hotfix(gpt2): Remove vocab-size logits slice
parents
f9eca2c8
1a545447
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lm_eval/models/gpt2.py
lm_eval/models/gpt2.py
+1
-1
No files found.
lm_eval/models/gpt2.py
View file @
3d14707a
...
@@ -119,7 +119,7 @@ class HFLM(BaseLM):
...
@@ -119,7 +119,7 @@ class HFLM(BaseLM):
logits returned from the model
logits returned from the model
"""
"""
with
torch
.
no_grad
():
with
torch
.
no_grad
():
return
self
.
gpt2
(
inps
)[
0
]
[:,
:,
:
50257
]
return
self
.
gpt2
(
inps
)[
0
]
def
_model_generate
(
self
,
context
,
max_length
,
eos_token_id
):
def
_model_generate
(
self
,
context
,
max_length
,
eos_token_id
):
return
self
.
gpt2
.
generate
(
return
self
.
gpt2
.
generate
(
...
...
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