Skip to content

Commit

Permalink
update readme (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcakyon authored Aug 12, 2022
1 parent 2c296fc commit aa959ee
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ datamodule = VideoDataModule(
train_dataset_multiplier=1,
batch_size=4,
num_workers=4,
video_timesteps=8,
video_crop_size=224,
video_means=backbone.mean,
video_stds=backbone.std,
video_min_short_side_scale=256,
video_max_short_side_scale=320,
video_horizontal_flip_p=0.5,
num_timesteps=8,
preprocess_input_size=224,
preprocess_means=backbone.mean,
preprocess_stds=backbone.std,
preprocess_min_short_side_scale=256,
preprocess_max_short_side_scale=320,
preprocess_horizontal_flip_p=0.5,
)

head = LinearHead(hidden_size=neck.num_features, num_classes=datamodule.num_classes)
Expand Down Expand Up @@ -143,13 +143,13 @@ datamodule = VideoDataModule(
train_dataset_multiplier=1,
batch_size=4,
num_workers=4,
video_timesteps=8,
video_crop_size=224,
video_means=backbone.mean,
video_stds=backbone.std,
video_min_short_side_scale=256,
video_max_short_side_scale=320,
video_horizontal_flip_p=0.5,
num_timesteps=8,
preprocess_input_size=224,
preprocess_means=backbone.mean,
preprocess_stds=backbone.std,
preprocess_min_short_side_scale=256,
preprocess_max_short_side_scale=320,
preprocess_horizontal_flip_p=0.5,
)

head = LinearHead(hidden_size=neck.num_features, num_classes=datamodule.num_classes)
Expand Down

0 comments on commit aa959ee

Please sign in to comment.