提交 1738af44 编写于 作者: A A. Unique TensorFlower

Internal change

PiperOrigin-RevId: 453736287
上级 f6ee3093
......@@ -43,6 +43,18 @@ RESNET_SPECS = {
('bottleneck', 256, 23),
('bottleneck', 512, 3),
],
152: [
('bottleneck', 64, 3),
('bottleneck', 128, 8),
('bottleneck', 256, 36),
('bottleneck', 512, 3),
],
200: [
('bottleneck', 64, 3),
('bottleneck', 128, 24),
('bottleneck', 256, 36),
('bottleneck', 512, 3),
],
}
......
......@@ -29,8 +29,12 @@ class ResNetTest(parameterized.TestCase, tf.test.TestCase):
@parameterized.parameters(
(128, 50, 4, 8),
(128, 101, 4, 8),
(128, 152, 4, 8),
(128, 200, 4, 8),
(128, 50, 4, 16),
(128, 101, 4, 16),
(128, 152, 4, 16),
(128, 200, 4, 16),
)
def test_network_creation(self, input_size, model_id,
endpoint_filter_scale, output_stride):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册