Skip to content

Commit

Permalink
update: video classifier test input shape
Browse files Browse the repository at this point in the history
  • Loading branch information
innat committed Mar 6, 2024
1 parent e2f5056 commit 146f32f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion keras_cv/models/classification/video_classifier_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ def test_classifier_fit(self, jit_compile):
)
def test_pooling_arg_call(self, pooling):
model = VideoClassifier(
backbone=VideoSwinBackbone(include_rescaling=False),
backbone=VideoSwinBackbone(
input_shape=(8, 224, 224, 3), include_rescaling=True
),
num_classes=10,
pooling=pooling,
)
Expand Down

0 comments on commit 146f32f

Please sign in to comment.