Parallel practice of ResNet model on GPU

Rimeng Society AI AI:Keras PyTorch MXNet TensorFlow PaddlePaddle deep learning real combat (irregular update) Parallel practice of ResNet model on GPU TensorFlow distributed training: single machine multi card training MirroredStrategy, multi machine training MultiWorkerMirroredStrategy Parallel practice of ResNet model on GPU Learning o ...

Added by Hilitec on Fri, 14 Jan 2022 21:52:38 +0200

Multivariate time series prediction using LSTM

In this paper, we will use the deep learning method (LSTM) to perform multivariate time series prediction.Let's start with two topics——What is time series analysis?What is LSTM?Time series analysis: time series represent a series of data based on time sequence. It can be seconds, minutes, hours, days, weeks, months and years. Future ...

Added by duckduckgoose on Tue, 11 Jan 2022 04:57:06 +0200

[TensorFlow] TensorFlow 2 basic operation demonstration

1. Tensor data type TensorFlow is not so mysterious. In order to adapt to automatic derivation and GPU operation, it came into being. In order to fit with the core data type ndarray of numpy, the core data type is Tensor, which means Tensor in Chinese (generally, it is mathematically divided into scalar, one-dimensional vector and two-dime ...

Added by hessodreamy on Sun, 09 Jan 2022 17:30:52 +0200

Pycharm2019+Tensorflow2.0 learning document: 3-1, low-level API demonstration 1

reference resources: Reference 1;Reference 2 Generally speaking, the common supervised machine learning problems are mainly divided into two categories: classification and regression. When we use Tensorflow to solve these problems, we need to build our own network, but Tensorflow APIs at different levels also produce different model building ...

Added by shadowq on Fri, 07 Jan 2022 11:13:58 +0200

TensorFlow realizes multiple input sources and multiple output

TensorFlow implements multiple input multiple output model Sometimes we have more than one input data, and there will be multiple input sources and multiple output sources. In this case, we obviously can't use Sequential, because Sequential can only build linear topology model, which is more suitable for pipeline model. If it is nonlinear to ...

Added by hillbilly928 on Wed, 05 Jan 2022 19:44:23 +0200

Teach you how to design and implement a deep learning framework (with code implementation)

Firstly, this paper analyzes the process of deep learning, abstracts the key components in neural network, and determines the basic framework; Then code the components in the framework; Finally, based on this framework, an example of MNIST classification is implemented and compared with Tensorflow. If you like this article, please like, collect ...

Added by quartney on Tue, 04 Jan 2022 07:44:59 +0200

Deep learning: GooLeNet for image classification

1. Introduction    the name of googlenet is not googlenet, but googlenet. This is to pay tribute to LeNet. Googlenet and AlexNet/VGGNet, which rely on deepening the depth of the network structure, are not exactly the same. Googlenet makes structural innovation while adding depth, and introduces a structure called Inception to replace ...

Added by nosheep on Sun, 02 Jan 2022 15:27:05 +0200

Making image segmentation label data using labelme in Win10 system

Making image segmentation label data using labelme in Win10 system preface This paper mainly introduces how to use labelme to make semantic segmented label data, and convert the generated json files into usable image labels in batch through code. 1, Install labelme3 sixteen point two 1. Install Anaconda (ignore this step if you hav ...

Added by banacan on Fri, 31 Dec 2021 21:20:06 +0200

callbacks callback functions (Checkpoint, TensorBoard), TF data,ImageDataGenerator

Rimeng Society AI AI:Keras PyTorch MXNet TensorFlow PaddlePaddle deep learning real combat (irregular update) 4.6 TF common function modules 4.6. 1. Detailed explanation of callback of fit Callbacks are a set of functions that are applied at a given stage of the training process. Callbacks can be used to obtain views of internal status a ...

Added by jjk2 on Fri, 31 Dec 2021 04:52:00 +0200

Keras's Sequential/Functional API can build models in two ways, save models / weights and restore models / weights, and customize Layer / Loss function / evaluation indicator Metric

Rimeng Society AI AI:Keras PyTorch MXNet TensorFlow PaddlePaddle deep learning real combat (irregular update) 4.5 Keras Pipline and custom model The Subclassing API of keras is used to establish the model, that is, TF keras. The model class is extended to define its own new model, and the process of training and evaluating the model is wr ...

Added by HK2ALL on Fri, 31 Dec 2021 02:23:37 +0200