Skip to content

Commit

Permalink
Fix repo consistency (#18682)
Browse files Browse the repository at this point in the history
  • Loading branch information
lewtun authored Aug 18, 2022
1 parent 76454b0 commit 5987c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transformers/models/levit/configuration_levit.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class LevitOnnxConfig(OnnxConfig):
def inputs(self) -> Mapping[str, Mapping[int, str]]:
return OrderedDict(
[
("pixel_values", {0: "batch", 1: "sequence"}),
("pixel_values", {0: "batch", 1: "num_channels"}),
]
)

Expand Down

0 comments on commit 5987c63

Please sign in to comment.