Battery SOH simulation series - battery SOH estimation method based on LSTM neural network

be based on Estimation of battery SOH based on LSTM neural network    unlike BP neural network, RNN network not only considers the input of the previous time, but also gives the network the ability to remember the information of the previous time. Although RNN network has high accuracy, it has the problem of gradient disappe ...

Added by antisback on Sat, 22 Jan 2022 01:27:42 +0200

Introduction to classic dataset - dataset production - YOLOv5 parameter interpretation

This note is based on Small mound teaching video The notes are detailed and not boring. They are recommended to students who want to learn target detection. The following personal notes are for your reference. If there are errors, please correct them! Target detection: location + Category Face detection: face target Text detection: text ta ...

Added by Syranide on Sat, 22 Jan 2022 00:31:28 +0200

Team learning graph neural network (seventh)

Creation of super large data set class Previously, we only touched on data sets that can store all data in memory. The data set classes corresponding to these data sets load all data into memory when creating objects. However, if the data set is super large, it is difficult for us to have enough memory to store all the data completely. Therefo ...

Added by rxero on Fri, 21 Jan 2022 19:40:14 +0200

Implementation of Generate Countermeasure Network (GAN) and its Variant (DCGAN):Based on tensorflow

Preface To understand what generates an antagonistic network, first explain supervised learning and unsupervised learning: Supervised learning: Machine learning based on a large number of labeled training sets and test sets, such as a picture classifier that requires a series of pictures and corresponding labels ("cat", "dog ...

Added by mentalfloss on Fri, 21 Jan 2022 18:33:00 +0200

yolov5 train your own dataset

The position of yolo Series in the field of target detection goes without saying. There is a code for training yolov5 implemented by pytorch on github. This paper will use its own data to train a yolov5 model. Reference code address https://github.com/ultralytics/yolov5/tags Note that here we select v1.0 under tags 0 version for training, d ...

Added by Sakesaru on Fri, 21 Jan 2022 10:43:30 +0200

Transformer backbone network -- TNT nanny level analysis

preface Thesis address: arxiv Code address: github Receiver: NeurIPS 2021 Series articles Transformer backbone - PVT_V1 nanny level resolution Transformer backbone - PVT_V2 level parsing Transformer backbone network -- T2T-ViT nanny level analysis Transformer backbone network -- TNT nanny level analysis Continuous update! motivation The au ...

Added by 14zero on Fri, 21 Jan 2022 08:28:45 +0200

TensorFlow model saving and loading

1, References TensorFlow 2.0 - tf.saved_model.save model export Use SavedModel format 2, Related introduction 1. SavedModel format TensorFlow model export In order to deploy the trained machine learning model to each target platform (such as server, mobile terminal, embedded device and browser), our first step is often to export (serialize ...

Added by newbie8899 on Fri, 21 Jan 2022 06:51:53 +0200

Learning notes from scratch of 3.6 softmax regression in hands on deep learning + PyTorch

preface Softmax regression, also known as multiple or multi class Logistic regression, is the generalization of Logistic regression in multi classification problems. 1, Training set and test set Use the data set fashion MNIST obtained in the previous section. 2, Steps 1. Import and storage import torch import torchvision import nu ...

Added by petitduc on Thu, 20 Jan 2022 21:53:13 +0200

60 minute entry depth learning tool (code comments plus learning pytorch)

preface Original translation from: Deep Learning with PyTorch: A 60 Minute Blitz Translation: Lin Yun catalogue 60 minute introduction to PyTorch (I) - Tensors 60 minute introduction to PyTorch (II) -- Autograd automatic derivation 60 minute introduction to pytoch (III) -- neural network 60 minute introduction to PyTorch (IV) -- training ...

Added by harley1387 on Thu, 20 Jan 2022 16:50:13 +0200

[paddedetection nanny tutorial] using custom data sets to achieve smoking recognition prediction

PaddleDetection introduce PaddleDetection is an end to end object detection development kit based on PaddlePaddle, which is designed to help developers provide help in the whole development of training models, optimizing performance and reasoning speed, and deploying models. Paddedetection provides various object detection architectures in mo ...

Added by Edd on Thu, 20 Jan 2022 09:34:39 +0200