[hands on deep learning | Week1a] 02 + 03 + 04 data operation and data processing

02 introduction to deep learning What is the field of perception: the stage at which people can quickly perceive and process (English to Chinese). Deep learning, computer vision and natural language processing are the three largest contents in the field of AI. Application of deep learning Image classification (IMAGENET), at present, the erro ...

Added by AdamSnow on Fri, 17 Dec 2021 12:01:04 +0200

Machine learning algorithm sorting (including code)

First, let me make an advertisement~ If you need more artificial intelligence courses (source code + Notes + courseware), please scan the QR code to get it The following is the text In order to facilitate the exchange of fans, a Q group was established: [809160367,] let's learn and exchange together, including courseware materials, source ...

Added by maexus on Thu, 16 Dec 2021 21:10:35 +0200

2021 Fourth Job of Artificial Neural Network - Topic 1: LeNet Classification of Fruits and Animals

Introduction: The image classification problem of FAMNIST data collection consisting of five kinds of animals and five kinds of fruits was tested. This paper mainly focuses on the preparation of the previous database and the construction of the network. Detailed testing of the network can be found in Identification tests for ten species of anim ...

Added by feri_soft on Thu, 16 Dec 2021 20:00:15 +0200

Statistical learning method - perceptron + handwritten code

preface I've been reading Dr. Li Hang's "statistical learning methods" recently. I'll make a small record here and write down my understanding. I welcome your criticism and correction. text Intuitive understanding of perceptron Perceptron should be the simplest algorithm among machine learning algorithms. Its principle can be seen i ...

Added by Daggeth on Thu, 16 Dec 2021 19:32:08 +0200

TensorFlow2 function -- TF data. Dataset. padded_ batch

Category: General contents of TensorFlow2 function in simple terms Function: padded_batch(batch_size, padded_shapes=None, padding_values=None, drop_remainder=False,name=None) This function can merge the continuous elements of the dataset into the padded batch. Merge multiple consecutive elements of the input dataset into a single element. ...

Added by MBK on Wed, 15 Dec 2021 18:38:45 +0200

Automatic project configuration or use case file format Recommendation -- yaml

The file format used in the interface test of pytest - yaml, and the corresponding Python Library - PyYaml, are familiar. It can be used as the configuration file or use case file of your automated test framework. yaml is a lighter file format than xml and json. It is also simpler and more powerful. It can represent the structure through inden ...

Added by mariocesar on Wed, 15 Dec 2021 04:01:15 +0200

Implementation of Markov chain Monte Carlo MCMC model in R language

Original link: http://tecdat.cn/?p=2687Original source: Tuo end data tribal official accountWhat is MCMC and when to use it?MCMC is just an algorithm for sampling from distribution.This is just one of many algorithms. This term stands for "Markov chain Monte Carlo" because it is a "Monte Carlo" (i.e. random) method using &qu ...

Added by shan169 on Tue, 14 Dec 2021 11:37:14 +0200

Advanced actual combat of propeller AI: industrial meter reading (record)

Preparation stage Step 1: create a Notebook model task step1: enter the BML home page and click use now 🔗: https://ai.baidu.com/bml/ Step 2: click the Notebook to create a "general task" step3: fill in task information Step 2: download the task operation template Download link: https://aistudio.baidu.com/aistudio/datas ...

Added by vtroubled on Tue, 14 Dec 2021 00:07:58 +0200

[Python basics] Python functions

1, Function is the most used object in python.Simple rules for function definition:1. Defined in def, followed by function name, parameter and colon. Format:2. The internal code block of the function needs to be indented3. Use return to return the function value. The default return value is NoneFormat:def function name (parameter):Code blockret ...

Added by tymlls05 on Mon, 13 Dec 2021 09:43:10 +0200

AI Studio: use the minimalist framework in the paddy framework to identify MNIST

Introduction: ※ identify MNIST program by testing this minimalist Paddle on the network, that is, use a very simple linear regression network, and preliminarily get familiar with the network architecture under Paddle. An example is also given in the tensor conversion program from numpy to Paddle. Keywords: AI Studio, paddy, MNIST   ...

Added by jguy on Sun, 12 Dec 2021 05:30:22 +0200