Tensorflow learning 2 --- introduction to basic knowledge of tensorflow 2

Introduction to basic concepts Artificial intelligence: simple understanding is to make machines have human thinking and consciousness Three schools of artificial intelligence: Behaviorism: constructing perception control system based on CyberneticsSymbolism: Based on arithmetic logic expression, to solve a problem, first describe the pro ...

Added by logging on Mon, 08 Nov 2021 01:12:22 +0200

Gesture_ Cognition (gesture recognition) [attach github address]

Gesture_ Recognition (gesture recognition) 1, Project information The project is developed based on tensorflow 2.1, self built six gesture data sets, built-in image preprocessing, image widening, network model, recognition and other programs. It can help novices master how to use self-made data sets for model training, classification, and cal ...

Added by lkalik on Wed, 27 Oct 2021 21:06:57 +0300

Graduation project - breast cancer classification deep learning medical image based on convolution neural network

1 Preface Hi, Hello, this is Dancheng, and today we introduce the classification of breast cancer based on convolution neural network. This is the subject of deep learning in medical image classification You can use it for graduation design Bi design help, problem opening guidance, technical solutions 🇶746876041 2 PREFACE Breast canc ...

Added by engelsol on Sat, 23 Oct 2021 10:50:22 +0300

Detailed explanation of Unet network for image segmentation

This note is based on the tensorflow-2 version and is contributed first code perhaps Download code (scientific Internet access may be required). What is image segmentation In the image classification task, the network assigns a label (or category) to each input image. However, suppose you want to know the shape of the object, which pixel belo ...

Added by niki77 on Wed, 20 Oct 2021 21:07:19 +0300

100 cases of in-depth learning | day 33: Transfer Learning - practical case tutorial (a point that must be mastered)

What do I knowMy WeChat official accountMy CSDNDownload this article source code + dataNeed help. Ctrl+D: favorite this page In this tutorial, you will learn how to use migration learning to classify images of cats and dogs through a pre training network. The pre training model is a saved network previously trained based on large data sets ...

Added by palpie on Mon, 18 Oct 2021 09:40:35 +0300

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

DDPG code implementation

DDPG code implementation Code and explanation 1. Super parameter setting import argparse parser = argparse.ArgumentParser() parser.add_argument('--train', dest='train', default=True) parser.add_argument('--random_seed', type=int, default=0) #Whether to render during training parser.add_argument('--render', type=bool, defa ...

Added by tensionx on Thu, 30 Sep 2021 01:43:44 +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

tensorflow study notes

         First, the first question: what is tensorflow?   It is an open source software library for solving numerical calculation based on data flow graph. Now it is mainly used for in-depth learning. In my understanding, tensorflow can complete the construction of neural network and carry out a ser ...

Added by curb on Wed, 15 Sep 2021 22:10:05 +0300

TensorFlow by Google CNN machine learning foundations: EP #5 - classifying real world images

The picture classification structure is convenient for training and testing 1. Use convolution for complex images https://bit.ly/tfw-lab5 #@title Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apac ...

Added by php_guest on Fri, 10 Sep 2021 03:19:16 +0300