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
46ca66de
".github/vscode:/vscode.git/clone" did not exist on "627d44465ea30f66bb9c62d91230043607fdb811"
Commit
46ca66de
authored
Jul 03, 2023
by
haileyschoelkopf
Browse files
fix squeeze() in pad_and_concat
parent
0b896bd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lm_eval/utils.py
lm_eval/utils.py
+2
-1
No files found.
lm_eval/utils.py
View file @
46ca66de
...
@@ -468,7 +468,8 @@ def pad_and_concat(
...
@@ -468,7 +468,8 @@ def pad_and_concat(
),
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
if
len
(
tensor
.
shape
)
==
2
:
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