Using k-means clustering to generate SSD anchor frame aspect ratio

(this article is part of TensorFlow Object_detection API framework, which is used to train your own model anchor box.) Many object detection models use anchor boxes as the area sampling strategy, so during training, the model learns to match one of several predefined anchor boxes with the ground live boundary box. In order to optimize the accur ...

Added by patryn on Tue, 15 Feb 2022 08:34:50 +0200

Engineering landing competition - TIPC and Serving support examples

General introduction The project is mainly based on github project Introduce how to access TIPC and how to support serving. For more information about the original project, please see readme Understand MD. In addition, you can also refer to the official TIPC and Serving To connect your own model to TIPC and serve support. TIPC basic chain &c ...

Added by Agtronic on Fri, 11 Feb 2022 23:58:22 +0200

[note] don't bother PYTHON | Tensorflow tutorial - high level content (Chapter 5)

5.1 Classification learning The qualitative output of Classification problem is Classification, or discrete variable prediction. Regression problem, the quantitative output is regression, or continuous variable prediction. """ Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly. """ f ...

Added by sdyates2001 on Thu, 10 Feb 2022 23:21:41 +0200

Python OpenCv realizes real-time face recognition and face distance measurement

Python OpenCv realizes real-time face recognition and face ranging prepare Before the development of facial ranging, first install four libraries in your Python, namely cvzone library, mediapipe library, tensorflow library and tensorflow GPU library. It is faster to install cvzone library and mediapipe library. You can install them quickly by ...

Added by hollyspringer on Thu, 10 Feb 2022 16:49:06 +0200

[Tensorflow] through Tensorflow 2 0 training neural network model

In the neural network optimization algorithm, the most commonly used method is the back propagation algorithm, and its work flow is as follows: As shown in the figure, the back propagation algorithm implements an iterative process. At the beginning of each iteration, a part of training data is selected, which is called a batch. Then, the ...

Added by neclord81 on Thu, 10 Feb 2022 12:32:46 +0200

Detailed explanation and implementation of self encoder model (implemented by tensorflow2.x)

Learning latent variables using self encoder Because there are many redundancies in the high-dimensional input space, it can be compressed into some low-dimensional variables. The self encoder was first introduced by Geoffrey Hinton et al. In the 1980s. Similar to the technology used to reduce the input dimension in traditional machine lea ...

Added by tauchai83 on Thu, 10 Feb 2022 08:43:45 +0200

TensorFlow series - feature_column feature tool description

1, Some tools 1. Three features of local printout non sequential sequence data_ Method of column converted value Applicable to tensorflow1 x import tensorflow as tf from tensorflow.python.feature_column import feature_column_v2 as fc_v2 from tensorflow.python.feature_column import feature_column as fc # Note: only mode 2 will check whether t ...

Added by installer69 on Wed, 09 Feb 2022 20:58:32 +0200

TF hub training image classifier

reference resources Training image classifier introduce The image classification model has millions of parameters. Training from scratch requires a lot of labeled training data and a lot of computing power. Transfer learning is a skill that greatly simplifies the process by adopting a model that has been trained on related tasks and reusi ...

Added by g-force2k2 on Wed, 09 Feb 2022 04:11:09 +0200

Study notes 06--@tf function

TensorFlow 2's default Eagle execution mode brings us flexibility and easy debugging. However, in order to pursue faster speed and higher performance, we still want to use tensorflow 1 The default Graph Execution mode in X. At this point, TensorFlow 2 provides us with TF Function module, combined with AutoGraph mechanism, makes us only need to ...

Added by CrowderSoup on Tue, 08 Feb 2022 09:39:29 +0200

Summary of face alignment and face key point detection based on Tensorflow framework with code (continuously updated)

Summary of face alignment and face key point detection based on Tensorflow framework with code (continuously updated)    Summary of face detection based on Tensorflow framework with code (continuously updated)    Summary of face matching based on Tensorflow framework with code (continuously updated)    recently used the open sourc ...

Added by NotMrT on Fri, 04 Feb 2022 09:10:23 +0200