"models/vscode:/vscode.git/clone" did not exist on "acd87ae02adfd1fc08f37d367fd250f4f0d92003"
Commit 2327cbf7 authored by Yin Cui's avatar Yin Cui Committed by A. Unique TensorFlower
Browse files

Internal change

PiperOrigin-RevId: 350257408
parent d4149bca
...@@ -53,6 +53,13 @@ task: ...@@ -53,6 +53,13 @@ task:
shuffle_buffer_size: 1024 shuffle_buffer_size: 1024
validation_data: validation_data:
name: kinetics400 name: kinetics400
feature_shape: !!python/tuple
- 8
- 256
- 256
- 3
temporal_stride: 8
num_test_clips: 1
global_batch_size: 32 global_batch_size: 32
dtype: 'bfloat16' dtype: 'bfloat16'
drop_remainder: false drop_remainder: false
......
...@@ -294,6 +294,10 @@ def build_resnet3d( ...@@ -294,6 +294,10 @@ def build_resnet3d(
temporal_kernel_sizes=temporal_kernel_sizes, temporal_kernel_sizes=temporal_kernel_sizes,
use_self_gating=use_self_gating, use_self_gating=use_self_gating,
input_specs=input_specs, input_specs=input_specs,
stem_conv_temporal_kernel_size=backbone_cfg
.stem_conv_temporal_kernel_size,
stem_conv_temporal_stride=backbone_cfg.stem_conv_temporal_stride,
stem_pool_temporal_stride=backbone_cfg.stem_pool_temporal_stride,
activation=norm_activation_config.activation, activation=norm_activation_config.activation,
use_sync_bn=norm_activation_config.use_sync_bn, use_sync_bn=norm_activation_config.use_sync_bn,
norm_momentum=norm_activation_config.norm_momentum, norm_momentum=norm_activation_config.norm_momentum,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment