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
eab96f01
Commit
eab96f01
authored
Nov 16, 2023
by
Alexander
Browse files
Apply comment
parent
5ead99f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
lm_eval/models/gpt2.py
lm_eval/models/gpt2.py
+1
-4
No files found.
lm_eval/models/gpt2.py
View file @
eab96f01
...
...
@@ -279,10 +279,7 @@ class OPTIMUMLM(BaseLM):
returns: a torch tensor of shape [batch, sequence, vocab] with the
logits returned from the model
"""
#with torch.no_grad():
attention_mask
=
inps
.
clone
()
attention_mask
[:]
=
1.0
return
self
.
gpt2
(
inps
,
attention_mask
)[
0
]
return
self
.
gpt2
(
inps
)[
0
]
def
_model_generate
(
self
,
context
,
max_length
,
eos_token_id
):
generation_kwargs
=
{
'do_sample'
:
False
,
'max_length'
:
max_length
}
...
...
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