Convolution neural network convolution layer implementation for deep learning

  in TensorFlow, you can not only build neural networks through the bottom implementation of custom weights, but also directly call the high-level implementation of existing convolution layer classes to quickly build complex networks. We mainly take 2D convolution as an example to introduce how to realize convolution neural network lay ...

Added by asparagus on Sat, 02 Oct 2021 04:46:05 +0300

Deep learning VGG16 network based on tensorflow 2.0

The network depth of VGG series is improved compared with its previous networks. VGG16 and VGG19 are the representatives of VGG series. This time, VGG16 network is realized based on tensorflow 2.0. 1. Introduction to vgg16 network VGG16 network model stood out in the 2014 ImageNet competition, ranking second in classification tasks and first ...

Added by aidema on Fri, 01 Oct 2021 22:52:04 +0300

ONNX to TensorRT accelerated model reasoning

preface TensorRT is an efficient deep learning model reasoning framework launched by NVIDIA. It includes deep learning reasoning optimizer and runtime, which can make deep learning reasoning applications have the advantages of low latency and high throughput. In essence, it is to accelerate the reasoning speed of the whole network by fusing s ...

Added by rolwong on Thu, 30 Sep 2021 23:51:37 +0300

Classic network architecture of deep learning: AlexNet

1, Introduction Alex net was designed by Hinton, the winner of the 2012 ImageNet competition, and his student Alex Krizhevsky. Also after that year, more and deeper neural networks were proposed, such as the excellent VGg and Google lenet. The accuracy of the official data model is 57.1% and the top 1-5 is 80.2%. This is quite excellent for th ...

Added by intermediate on Thu, 30 Sep 2021 01:30:52 +0300

Tianchi Competition - Prediction of Industrial Steam Volume

Starting from 0, data analysis and machine learning in Xueda University are simple and simple to write down the contest experience. This paper uses a variety of machine learning regression algorithms, and also uses deep learning pytorch to build a neural network for regression calculation. 1. Background introduction This is an industrial stea ...

Added by estero2002 on Sun, 26 Sep 2021 20:08:07 +0300

tensorflow realizes the migration learning of cat dog classifier concept V3

Part of the content comes from Keras introductory course 6 of blogger Stanley compound field - migration learning using concept V3 model Address: https://blog.csdn.net/tsyccnh/article/details/78889838 There are two main types of transfer learning The first is the so-called transfer learning. When migrating training, remove the top layer. Fo ...

Added by runeveryday on Wed, 22 Sep 2021 02:02:11 +0300

YOLOv5 Train Your Data Set

1. Overview Using YOLOv5 training dataset, there are three steps: data preparation and processing before training, training your own dataset, detection, and some optimization problems after training. 2. Preparations before training First from the official website of YOLOv5: https://github.com/ultralytics/yolov5 Download the corresponding pro ...

Added by dhiren22 on Mon, 20 Sep 2021 19:07:33 +0300

Fat details

Fat introduction Fat (Federated AI Technology Enabler) is an open source project initiated by the AI Department of Weizhong bank, which aims to provide a secure computing framework to support the federal AI ecosystem. It implements a secure computing protocol based on homomorphic encryption and multiparty computing (MPC). It supports the secur ...

Added by eXpertPHP on Sun, 19 Sep 2021 22:37:29 +0300

Visualizing models, data, and training using tensorboard

abstract In order to understand what happened, we printed out some statistics during model training to see whether the training was in progress. However, we can do better: PyTorch is integrated with TensorBoard, which is a tool for visualizing the results of neural network training. This tutorial explains some of its functions using the fa ...

Added by p0pb0b on Fri, 17 Sep 2021 06:26:32 +0300

[optimization prediction] BP neural network prediction optimized by firefly algorithm [Matlab 1313]

1, Introduction to firefly optimization algorithm (FA) 1 Introduction There are many kinds of fireflies, mainly distributed in the tropics. Most fireflies produce rhythmic flashes in a short time. This flash is due to a chemical reaction of bioluminescence, and the flash pattern of fireflies varies from species to species. firefly algorithm (F ...

Added by abushahin on Thu, 16 Sep 2021 03:11:41 +0300