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
b3aab393
Commit
b3aab393
authored
Jun 24, 2023
by
haileyschoelkopf
Browse files
squeeze tensors before pad_and_concat
parent
513352ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
lm_eval/utils.py
lm_eval/utils.py
+1
-0
No files found.
lm_eval/utils.py
View file @
b3aab393
...
@@ -434,6 +434,7 @@ def pad_and_concat(max_length: int, tensors: List[torch.Tensor], padding_side="r
...
@@ -434,6 +434,7 @@ def pad_and_concat(max_length: int, tensors: List[torch.Tensor], padding_side="r
),
f
"Unrecognized padding type: '
{
padding_side
}
' not 'left' or 'right'"
),
f
"Unrecognized padding type: '
{
padding_side
}
' not 'left' or 'right'"
for
i
,
tensor
in
enumerate
(
tensors
):
for
i
,
tensor
in
enumerate
(
tensors
):
tensor
=
tensor
.
squeeze
(
0
)
# squeeze, in case passed [1, seq] size
tensor_len
=
tensor
.
shape
[
0
]
tensor_len
=
tensor
.
shape
[
0
]
if
tensor_len
<
max_length
:
if
tensor_len
<
max_length
:
if
padding_side
==
"right"
:
if
padding_side
==
"right"
:
...
...
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