test_gpu_alexnet.py 3.2 KB
Newer Older
Z
zhunaipan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# Copyright 2019 Huawei Technologies Co., Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import numpy as np
J
jinyaohui 已提交
21 22
import pytest

23
import mindspore.context as context
Z
zhunaipan 已提交
24
import mindspore.nn as nn
25
from mindspore import Tensor
J
jinyaohui 已提交
26
from mindspore.nn import TrainOneStepCell, WithLossCell
Z
zhunaipan 已提交
27
from mindspore.nn.optim import Momentum
28

Z
zhunaipan 已提交
29 30
context.set_context(mode=context.GRAPH_MODE, device_target="GPU")

31

Z
zhunaipan 已提交
32 33 34 35 36 37 38 39 40 41
class AlexNet(nn.Cell):
    def __init__(self, num_classes=10):
        super(AlexNet, self).__init__()
        self.batch_size = 32
        self.conv1 = nn.Conv2d(3, 96, 11, stride=4, pad_mode="valid")
        self.conv2 = nn.Conv2d(96, 256, 5, stride=1, pad_mode="same")
        self.conv3 = nn.Conv2d(256, 384, 3, stride=1, pad_mode="same")
        self.conv4 = nn.Conv2d(384, 384, 3, stride=1, pad_mode="same")
        self.conv5 = nn.Conv2d(384, 256, 3, stride=1, pad_mode="same")
        self.relu = nn.ReLU()
B
buxue 已提交
42
        self.max_pool2d = nn.MaxPool2d(kernel_size=3, stride=2, pad_mode="valid")
Z
zhunaipan 已提交
43
        self.flatten = nn.Flatten()
J
jinyaohui 已提交
44
        self.fc1 = nn.Dense(6 * 6 * 256, 4096)
Z
zhunaipan 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
        self.fc2 = nn.Dense(4096, 4096)
        self.fc3 = nn.Dense(4096, num_classes)

    def construct(self, x):
        x = self.conv1(x)
        x = self.relu(x)
        x = self.max_pool2d(x)
        x = self.conv2(x)
        x = self.relu(x)
        x = self.max_pool2d(x)
        x = self.conv3(x)
        x = self.relu(x)
        x = self.conv4(x)
        x = self.relu(x)
        x = self.conv5(x)
        x = self.relu(x)
        x = self.max_pool2d(x)
        x = self.flatten(x)
        x = self.fc1(x)
        x = self.relu(x)
        x = self.fc2(x)
        x = self.relu(x)
        x = self.fc3(x)
        return x

70

Z
zhunaipan 已提交
71 72 73 74 75 76 77
@pytest.mark.level0
@pytest.mark.platform_x86_gpu_training
@pytest.mark.env_onecard
def test_trainTensor(num_classes=10, epoch=15, batch_size=32):
    net = AlexNet(num_classes)
    lr = 0.1
    momentum = 0.9
78
    optimizer = Momentum(filter(lambda x: x.requires_grad, net.get_parameters()), lr, momentum, weight_decay=0.0001)
Z
zhunaipan 已提交
79 80 81 82
    criterion = nn.SoftmaxCrossEntropyWithLogits(is_grad=False, sparse=True)
    net_with_criterion = WithLossCell(net, criterion)
    train_network = TrainOneStepCell(net_with_criterion, optimizer)
    train_network.set_train()
83
    losses = []
Z
zhunaipan 已提交
84
    for i in range(0, epoch):
85
        data = Tensor(np.ones([batch_size, 3, 227, 227]).astype(np.float32) * 0.01)
Z
zhunaipan 已提交
86
        label = Tensor(np.ones([batch_size]).astype(np.int32))
V
VectorSL 已提交
87
        loss = train_network(data, label).asnumpy()
Z
zhunaipan 已提交
88
        losses.append(loss)
V
VectorSL 已提交
89
    assert losses[-1] < 0.01