# file: neural_net_dense_batch.py
#===============================================================================
# Copyright 2014-2018 Intel Corporation.
#
# This software and the related documents are Intel copyrighted materials, and
# your use of them is governed by the express license under which they were
# provided to you (License). Unless the License provides otherwise, you may not
# use, modify, copy, publish, distribute, disclose or transmit this software or
# the related documents without Intel's prior written permission.
#
# This software and the related documents are provided as is, with no express
# or implied warranties, other than those that are expressly stated in the
# License.
#=============================================================================== #
# ! Content:
# ! Python example of neural network training and scoring
# !***************************************************************************** #
## <a name="DAAL-EXAMPLE-PY-NEURAL_NET_DENSE_BATCH"></a>
## \example neural_net_dense_batch.py
# import os
import sys import numpy as np from daal.algorithms.neural_networks import initializers
from daal.algorithms.neural_networks import layers
from daal.algorithms import optimization_solver
from daal.algorithms.neural_networks import training, prediction
from daal.data_management import NumericTable, HomogenNumericTable utils_folder = os.path.realpath(os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
if utils_folder not in sys.path:
sys.path.insert(0, utils_folder)
from utils import printTensors, readTensorFromCSV # Input data set parameters
trainDatasetFile = os.path.join("..", "data", "batch", "neural_network_train.csv")
trainGroundTruthFile = os.path.join("..", "data", "batch", "neural_network_train_ground_truth.csv")
testDatasetFile = os.path.join("..", "data", "batch", "neural_network_test.csv")
testGroundTruthFile = os.path.join("..", "data", "batch", "neural_network_test_ground_truth.csv") fc1 = 0
fc2 = 1
sm1 = 2 batchSize = 10 def configureNet():
# Create layers of the neural network
# Create fully-connected layer and initialize layer parameters
fullyConnectedLayer1 = layers.fullyconnected.Batch(5)
fullyConnectedLayer1.parameter.weightsInitializer = initializers.uniform.Batch(-0.001, 0.001)
fullyConnectedLayer1.parameter.biasesInitializer = initializers.uniform.Batch(0, 0.5) # Create fully-connected layer and initialize layer parameters
fullyConnectedLayer2 = layers.fullyconnected.Batch(2)
fullyConnectedLayer2.parameter.weightsInitializer = initializers.uniform.Batch(0.5, 1)
fullyConnectedLayer2.parameter.biasesInitializer = initializers.uniform.Batch(0.5, 1) # Create softmax layer and initialize layer parameters
softmaxCrossEntropyLayer = layers.loss.softmax_cross.Batch() # Create configuration of the neural network with layers
topology = training.Topology() # Add layers to the topology of the neural network
topology.push_back(fullyConnectedLayer1)
topology.push_back(fullyConnectedLayer2)
topology.push_back(softmaxCrossEntropyLayer)
topology.get(fc1).addNext(fc2)
topology.get(fc2).addNext(sm1)
return topology def trainModel():
# Read training data set from a .csv file and create a tensor to store input data
trainingData = readTensorFromCSV(trainDatasetFile)
trainingGroundTruth = readTensorFromCSV(trainGroundTruthFile, True) sgdAlgorithm = optimization_solver.sgd.Batch(fptype=np.float32) # Set learning rate for the optimization solver used in the neural network
learningRate = 0.001
sgdAlgorithm.parameter.learningRateSequence = HomogenNumericTable(1, 1, NumericTable.doAllocate, learningRate)
# Set the batch size for the neural network training
sgdAlgorithm.parameter.batchSize = batchSize
sgdAlgorithm.parameter.nIterations = int(trainingData.getDimensionSize(0) / sgdAlgorithm.parameter.batchSize) # Create an algorithm to train neural network
net = training.Batch(sgdAlgorithm) sampleSize = trainingData.getDimensions()
sampleSize[0] = batchSize # Configure the neural network
topology = configureNet()
net.initialize(sampleSize, topology) # Pass a training data set and dependent values to the algorithm
net.input.setInput(training.data, trainingData)
net.input.setInput(training.groundTruth, trainingGroundTruth) # Run the neural network training and retrieve training model
trainingModel = net.compute().get(training.model)
# return prediction model
return trainingModel.getPredictionModel_Float32() def testModel(predictionModel):
# Read testing data set from a .csv file and create a tensor to store input data
predictionData = readTensorFromCSV(testDatasetFile) # Create an algorithm to compute the neural network predictions
net = prediction.Batch() net.parameter.batchSize = predictionData.getDimensionSize(0) # Set input objects for the prediction neural network
net.input.setModelInput(prediction.model, predictionModel)
net.input.setTensorInput(prediction.data, predictionData) # Run the neural network prediction
# and return results of the neural network prediction
return net.compute() def printResults(predictionResult):
# Read testing ground truth from a .csv file and create a tensor to store the data
predictionGroundTruth = readTensorFromCSV(testGroundTruthFile) printTensors(predictionGroundTruth, predictionResult.getResult(prediction.prediction),
"Ground truth", "Neural network predictions: each class probability",
"Neural network classification results (first 20 observations):", 20) topology = ""
if __name__ == "__main__": predictionModel = trainModel() predictionResult = testModel(predictionModel) printResults(predictionResult)

  目前支持的Layers

    • Common Parameters
    • Fully Connected Forward Layer
    • Fully Connected Backward Layer
    • Absolute Value ForwardLayer
    • Absolute Value Backward Layer
    • Logistic ForwardLayer
    • Logistic BackwardLayer
    • pReLU ForwardLayer
    • pReLU BackwardLayer
    • ReLU Forward Layer
    • ReLU BackwardLayer
    • SmoothReLU ForwardLayer
    • SmoothReLU BackwardLayer
    • Hyperbolic Tangent Forward Layer
    • Hyperbolic Tangent Backward Layer
    • Batch Normalization Forward Layer
    • Batch Normalization Backward Layer
    • Local-Response Normalization ForwardLayer
    • Local-Response Normalization Backward Layer
    • Local-Contrast Normalization ForwardLayer
    • Local-Contrast Normalization Backward Layer
    • Dropout ForwardLayer
    • Dropout BackwardLayer
    • 1D Max Pooling Forward Layer
    • 1D Max Pooling Backward Layer
    • 2D Max Pooling Forward Layer
    • 2D Max Pooling Backward Layer
    • 3D Max Pooling Forward Layer
    • 3D Max Pooling Backward Layer
    • 1D Average Pooling Forward Layer
    • 1D Average Pooling Backward Layer
    • 2D Average Pooling Forward Layer
    • 2D Average Pooling Backward Layer
    • 3D Average Pooling Forward Layer
    • 3D Average Pooling Backward Layer
    • 2D Stochastic Pooling Forward Layer
    • 2D Stochastic Pooling Backward Layer
    • 2D Spatial Pyramid Pooling ForwardLayer
    • 2D Spatial Pyramid Pooling BackwardLayer
    • 2D Convolution Forward Layer
    • 2D Convolution Backward Layer
    • 2D Transposed Convolution ForwardLayer
    • 2D Transposed Convolution BackwardLayer
    • 2D Locally-connected Forward Layer
    • 2D Locally-connected Backward Layer
    • Reshape ForwardLayer
    • Reshape BackwardLayer
    • Concat ForwardLayer
    • Concat BackwardLayer
    • Split Forward Layer
    • Split Backward Layer
    • Softmax ForwardLayer
    • Softmax BackwardLayer
    • Loss Forward Layer
    • Loss Backward Layer
    • Loss Softmax Cross-entropy ForwardLayer
    • Loss Softmax Cross-entropy BackwardLayer
    • Loss Logistic Cross-entropy ForwardLayer
    • Loss Logistic Cross-entropy BackwardLayer
    • Exponential Linear Unit Forward Layer
    • Exponential Linear Unit Backward Layer

Intel DAAL AI加速——神经网络的更多相关文章

  1. Intel DAAL AI加速——支持从数据预处理到模型预测,数据源必须使用DAAL的底层封装库

    数据源加速见官方文档(必须使用DAAL自己的库): Data Management Numeric Tables Tensors Data Sources Data Dictionaries Data ...

  2. Intel DAAL AI加速 ——传统决策树和随机森林

    # file: dt_cls_dense_batch.py #===================================================================== ...

  3. 英特尔® 至强® 平台集成 AI 加速构建数据中心智慧网络

    英特尔 至强 平台集成 AI 加速构建数据中心智慧网络 SNA 通过 AI 方法来实时感知网络状态,基于网络数据分析来实现自动化部署和风险预测,从而让企业网络能更智能.更高效地为最终用户业务提供支撑. ...

  4. 释放至强平台 AI 加速潜能 汇医慧影打造全周期 AI 医学影像解决方案

    基于英特尔架构实现软硬协同加速,显著提升新冠肺炎.乳腺癌等疾病的检测和筛查效率,并帮助医疗科研平台预防"维度灾难"问题 <PAGE 1 LEFT COLUMN: CUSTOM ...

  5. tesorflow - create neural network+结果可视化+加速神经网络训练+Optimizer+TensorFlow

    以下仅为了自己方便查看,绝大部分参考来源:莫烦Python,建议去看原博客 一.添加层 def add_layer() 定义 add_layer()函数 在 Tensorflow 里定义一个添加层的函 ...

  6. Intel daal数据预处理

    https://software.intel.com/en-us/daal-programming-guide-datasource-featureextraction-py # file: data ...

  7. TensorFlow实战第三课(可视化、加速神经网络训练)

    matplotlib可视化 构件图形 用散点图描述真实数据之间的关系(plt.ion()用于连续显示) # plot the real data fig = plt.figure() ax = fig ...

  8. deeplearning.ai 卷积神经网络 Week 3 目标检测 听课笔记

    本周的主题是对象检测(object detection):不但需要检测出物体(image classification),还要能定位出在图片的具体位置(classification with loca ...

  9. 吴恩达deepLearning.ai循环神经网络RNN学习笔记_看图就懂了!!!(理论篇)

    前言 目录: RNN提出的背景 - 一个问题 - 为什么不用标准神经网络 - RNN模型怎么解决这个问题 - RNN模型适用的数据特征 - RNN几种类型 RNN模型结构 - RNN block - ...

随机推荐

  1. P3435 [POI2006]OKR-Periods of Words

    P3435 [POI2006]OKR-Periods of Words 题解传送门 kmp 注意:由于题目说只要A满足是2Q的前缀,所以求的不是严格的最大循环子串(20pts) 我们需要求出的是在主串 ...

  2. VM三种网络连接方式

    bridge:这种方式最简单,直接将虚拟网卡桥接到一个物理网卡上面,和Linux下一个网卡 绑定两个不同地址类似,实际上是将网卡设置为混杂模式,从而达到侦听多个IP的能力. 在此种模式下,虚拟机内部的 ...

  3. maven parent工程.pom修改后未自动更新

    前两周,因为框架parent工程的pom文件做了一点变更,然后在测试服务器进行maven install的时候,死都找不到新的依赖,都把nexus翻了个遍,确定是最新的了,就是download不下来, ...

  4. CentOS 7下搭建配置SVN服务器

    CentOS 7下搭建配置SVN服务器 1. 安装 CentOS通过yum安装subversion. $ sudo yum install subversion subversion安装在/bin目录 ...

  5. SVC(STM32)

    这两个都是 system level service,有什么区别呢?…… 手册上说 SVC 这个指令是同步的,而 PendSV 是异步的,请问是什么意思呢?…… 高手路过尽请留言啊

  6. 【第四章】 springboot + swagger

    注:本文参考自 http://www.jianshu.com/p/0465a2b837d2 swagger用于定义API文档. 好处: 前后端分离开发 API文档非常明确 测试的时候不需要再使用URL ...

  7. 如何给域名配置https证书

    http和https的区别就是,后者在网络传输过程中会很安全,原因就是给http安装了SSL证书. SSL证书有免费的和收费的,收费的顾名思义就是保护的方面更多,更安全.收费的像单域名的一年有几百.几 ...

  8. 【TCP/IP详解 卷一:协议】第十八章 TCP连接 的建立与终止 (2)其余内容

    18.5 TCP的半关闭 牢记 TCP 是 全双工 的. 半关闭:TCP提供了连接的一端 在结束了它的发送后 还能接收来自另外一端数据的能力.但是只有很少的应用程序利用它. 为了实现这个特性,编程接口 ...

  9. NS3 MyApp Class Reference

    官方文档:MyApp 可以在下面的几个例子找到: examples/tutorial/fifth.cc examples/tutorial/seventh.cc examples/tutorial/s ...

  10. C++:delete不完整类型的指针

    简单版 以下代码编译时会有warning: class X; void foo(X* x) { delete x; } 在GCC4.1.2下,编译出错信息是: warning: possible pr ...