MindSpore的CNN人脸识别深层网络代码示例添加预训练集
以下是使用MindSpore进行CNN人脸识别的深层网络代码示例,包括添加预训练集。
import mindspore.nn as nn
import mindspore.ops as ops
import mindspore.common.dtype as mstype
class ConvBlock(nn.Cell):
def __init__(self, in_channels, out_channels, kernel_size=3, stride=1, padding=1):
super(ConvBlock, self).__init__()
self.conv = nn.Conv2d(in_channels, out_channels, kernel_size, stride, padding, has_bias=False)
self.bn = nn.BatchNorm2d(out_channels)
self.relu = nn.ReLU()
def construct(self, x):
x = self.conv(x)
x = self.bn(x)
x = self.relu(x)
return x
class ResBlock(nn.Cell):
def __init__(self, in_channels, out_channels, stride=1):
super(ResBlock, self).__init__()
self.conv1 = ConvBlock(in_channels, out_channels, stride=stride)
self.conv2 = ConvBlock(out_channels, out_channels, kernel_size=3, stride=1, padding=1)
self.downsample = nn.SequentialCell([nn.Conv2d(in_channels, out_channels, kernel_size=1, stride=stride, has_bias=False), nn.BatchNorm2d(out_channels)])
self.relu = nn.ReLU()
def construct(self, x):
identity = x
x = self.conv1(x)
x = self.conv2(x)
if self.downsample is not None:
identity = self.downsample(identity)
x = x + identity
x = self.relu(x)
return x
class ResNet(nn.Cell):
def __init__(self, block, layers, num_classes=1000):
super(ResNet, self).__init__()
self.in_channels = 64
self.conv1 = ConvBlock(3, 64, kernel_size=7, stride=2, padding=3)
self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, pad_mode='same')
self.layer1 = self._make_layer(block, 64, layers[0])
self.layer2 = self._make_layer(block, 128, layers[1], stride=2)
self.layer3 = self._make_layer(block, 256, layers[2], stride=2)
self.layer4 = self._make_layer(block, 512, layers[3], stride=2)
self.avgpool = nn.AvgPool2d(7, 1)
self.dropout = nn.Dropout(0.4)
self.fc = nn.Dense(512 * block.expansion, num_classes)
def _make_layer(self, block, out_channels, blocks, stride=1):
downsample = None
if stride != 1 or self.in_channels != out_channels * block.expansion:
downsample = nn.SequentialCell([nn.Conv2d(self.in_channels, out_channels * block.expansion, kernel_size=1, stride=stride, has_bias=False), nn.BatchNorm2d(out_channels * block.expansion)])
layers = []
layers.append(block(self.in_channels, out_channels, stride, downsample))
self.in_channels = out_channels * block.expansion
for i in range(1, blocks):
layers.append(block(self.in_channels, out_channels))
return nn.SequentialCell(layers)
def construct(self, x):
x = self.conv1(x)
x = self.maxpool(x)
x = self.layer1(x)
x = self.layer2(x)
x = self.layer3(x)
x = self.layer4(x)
x = self.avgpool(x)
x = self.dropout(x)
x = ops.Reshape()(x, (-1, 512 * 1 * 1))
x = self.fc(x)
return x
def resnet50():
return ResNet(ResBlock, [3, 4, 6, 3])
# 加载预训练集
import os
import numpy as np
from mindspore import Tensor
def load_dataset(data_path):
images = []
labels = []
for subdir in os.listdir(data_path):
subpath = os.path.join(data_path, subdir)
for filename in os.listdir(subpath):
imgpath = os.path.join(subpath, filename)
img = Image.open(imgpath)
img = img.resize((224, 224))
img = np.array(img).astype(np.float32)
img = img.transpose((2, 0, 1))
images.append(img)
labels.append(int(subdir))
images = np.array(images)
labels = np.array(labels)
return Tensor(images), Tensor(labels)
train_path = "/path/to/pretrained/images"
train_images, train_labels = load_dataset(train_path)
原文地址: http://www.cveoy.top/t/topic/bhh4 著作权归作者所有。请勿转载和采集!