Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Dec 12, 2023
1 parent cd0cbc4 commit ee46587
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/vision/video_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ def prepare_all_videos(df, root_dir):
length = min(MAX_SEQ_LENGTH, video_length)
for j in range(length):
temp_frame_features[i, j, :] = feature_extractor.predict(
batch[None, j, :], verbose=0,
batch[None, j, :],
verbose=0,
)
temp_frame_mask[i, :length] = 1 # 1 = not masked, 0 = masked

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ pandas
jupyter
pycocotools
pydot
tensorflow==2.15.0
tensorflow
tensorflow_datasets
keras-tuner==1.4.5
keras-cv==0.7.1
Expand Down

0 comments on commit ee46587

Please sign in to comment.