[tensorflow] - tensorboard visual calculation diagram and parameter curve loss diagram

reference: https://zhuanlan.zhihu.com/p/71328244 catalogue 1. Visual calculation diagram 2. Visualization parameters 3. Remote tensorboard 4. Error reporting It's true that you have to pay it back sooner or later. You've always refused to learn Tensorboard because there are alternatives until you find that you have to use it. The follow ...

Posted by Maeltar on Tue, 08 Mar 2022 06:05:21 +0100

How to use Gradient Clipping to avoid gradient explosion

Given the error function, learning rate, and even the size of the target variable, the training neural network may become unstable. Large updating of weights during training will lead to numerical overflow or underflow, which is usually called gradients exploding. Gradient explosion is more common in recurrent neural networks, such as LSTM, b ...

Posted by nikkio3000 on Sun, 06 Mar 2022 07:06:23 +0100

Jetson information is used for simple neural network classification training on jetson nano

A simple classification training is carried out on the jetson nano development board 1. jetson inference Library Download, compilation and simple use Here please refer to: Github: https://github.com/dusty-nv/jetson-inference Gitee: https://gitee.com/jinwei_1/jetson-inference#https://www.youtube.com/watch?v=QXIwdsyK7Rw&list=PL5B692fm6 ...

Posted by nolos on Sat, 05 Mar 2022 02:29:58 +0100

Introduction to emnist dataset code of federal learning classification

Project introduction Federated learning algorithm is used to classify emnist data sets. First of all, we should clarify a knowledge point, which is the modifier @ TFF tf_ Calculation and @ TFF federated_ The difference between computation: tensorflow_ The federated (TFF) operation deals with federated values;Each Federation value has a f ...

Posted by jmandas on Fri, 04 Mar 2022 03:28:02 +0100

Detailed explanation of yolov5 training KITTI data set and division of KITTI data set

preface This article is based on KITTI data set training yolov5. Friends can divide the data set completely according to my steps (strictly follow the directory structure I listed, there will be no problem), so as to successfully train yolov5 in KITTI. If you strictly follow my directory structure, you don't need to modify any sentence in the ...

Posted by Tsukiyomi on Tue, 01 Mar 2022 12:31:19 +0100

Neural network case

Neural network case Learning objectives Able to use TF Keras get datasetConstruction of multilayer neural networkBe able to complete network training and evaluation The MNIST dataset using handwritten digits is shown in the figure above. The dataset contains 60000 samples for training and 10000 samples for testing. The image is a fixed ...

Posted by dabas on Sun, 20 Feb 2022 10:10:24 +0100

Summary of six common methods of visual deep learning model architecture

Visualization helps to explain and understand the internal structure of deep learning model. Through the visualization of the model calculation diagram, we can find out how the neural network is calculated. The visualization of the model mainly includes the following aspects:How many layers does the model haveInput and output shapes of each lay ...

Posted by zonkd on Sun, 20 Feb 2022 05:26:17 +0100

Tensorflow2.0 learning notes

1 tf.data tf.data is tenosrflow2 The module used to create datasets in 0 contains many types of dataset classes, among which dataset and TfRecordDataset are commonly used to encapsulate datasets. Dataset contains a large amount of existing data. TFRecord is a special data format in TF, which can improve the data reading and writing speed. ...

Posted by kevdotbadger on Fri, 18 Feb 2022 03:21:43 +0100

Detailed explanation of code with gradient policy recommended

Structure explanation After extracting the github download code, you can see the following directory The data directory stores data sets, which can be replaced with their own data sets as needed.The src directory is all the code Before looking at the code, let's look at the readme file. If there is readme in a code, we must look at it f ...

Posted by edkuan on Wed, 09 Feb 2022 23:02:01 +0100

TensorFlow-Keras 16. Losses common loss function

I introduction: Mentioned before Custom Loss and metrics , the following is an inventory of the loss functions commonly used in Keras. Of course, they are also commonly used in daily production and development for future user-defined loss functions. Although there are many forms of loss function, it can never change without its origin. Loss fu ...

Posted by sammon96 on Wed, 09 Feb 2022 13:33:47 +0100