DQN+LSTM -- simple interpretation and implementation of DRQN

1, Foreword DRQN comes from a paper in 2015. It is an early algorithm, and the content is easy to understand. It is to combine the traditional DQN with LSTM to make the agent have the function of memory, and finally achieved good results. It performs better than DQN in POMDP environment. Before reading this article, it is assumed that you alr ...

Posted by sasito on Wed, 17 Nov 2021 03:20:31 +0100

mnist handwriting recognition program based on keras

Hello, I'm a graduate student from the ECG group of Hebei University. This article is my understanding and sharing of mnist recognition learning. This paper is mainly used to give a guide to students who want to build a network with keras to identify mnist. Please correct any mistakes I will accept it with an open mind The first is the inst ...

Posted by slapdashgrim on Tue, 16 Nov 2021 14:22:06 +0100

Li Mu took you to learn AI for the sake of a small paper

Today, let's test the softmax image classification problem !!!!! I omitted the part of the animation display about the calculation accuracy torchvision.transforms is an image preprocessing package in pytorch, which contains many functions to transform image data, which are essential in the step of image data reading torchvision.transforms.Co ...

Posted by elite_prodigy on Fri, 12 Nov 2021 15:50:34 +0100

Smart transportation day01-01 project introduction

The increasing popularity of cars not only brings great convenience to people, but also leads to congested traffic conditions and more frequent traffic accidents. Intelligent transportation technology has become an important force to promote the development of modern transportation technology. Intelligent transportation can not only provide rea ...

Posted by DoctorT on Wed, 10 Nov 2021 16:01:22 +0100

Python Bayesian probability inference sequence data probability and a priori, likelihood and a posteriori graph visualization

Original link: http://tecdat.cn/?p=24191In this article, I will focus on an example of the inference probability given a short data sequence. I will first introduce the theory of how to use Bayesian method for expectation reasoning, and then implement the theory in Python so that we can deal with these ideas. In order to make the article easier ...

Posted by marowa on Wed, 10 Nov 2021 11:09:21 +0100

Three basic drawing skills necessary for in-depth learning

In depth learning, there are several commonly used diagrams: diagramDot graphdisplay picture 1 installation They are usually self-contained, such as conda software. If not, what about desktop installation? If it is already installed, you can skip it. 1. Open the console (win+R) - > Enter cmd 2. Enter the following command pip insta ...

Posted by jpbox on Wed, 10 Nov 2021 03:58:29 +0100

Python deep learning 5.3 uses pre trained convolutional neural networks

Let's practice, using the convolution basis of VGG16 network trained on ImageNet to extract interesting features from cat and dog images, and then train a cat and dog classifier on these features. VGG16 and other models are built into Keras. You can import from the Keras. Applications module. The following are some image classification models i ...

Posted by mr_zog on Fri, 05 Nov 2021 20:17:11 +0100

Tensorflow_cputensorflow_gpu for intel processors

When I installed tensorflow, I checked many articles, but none of them were particularly specific. This article is to draw on the strengths of others and summarize it according to its own installation process. Follow this article to install tensorflow 2.0 perfectly* Tensorflow is divided into__ Cpu__ And__ Gpu__ Version 2.0 or above, which gre ...

Posted by kotun on Sat, 30 Oct 2021 04:23:32 +0200

Handwritten numeral recognition based on TensorFlow's Keras advanced API

preface For this project, I also happened to see a SVE Pana explaining this at station B, knocking the code with his video and learning it. And write a note here, and also provide you with code, ha ha ha. 1, Keras? 1.Keras introduction Keras is a deep learning framework based on theano/tensorflow written in pure python. Keras is a high-leve ...

Posted by nemesis.2002 on Thu, 28 Oct 2021 15:00:47 +0200

Deep learning pytoch -- image classifier

Deep learning pytoch (IV) -- image classifier 1, Introduction Typically, when processing image, text, voice, or video data, you can use standard Python to load the data into the numpy array format, and then convert the array to torch.*Tensor For images, you can use pilot and OpenCVFor voice, you can use scipy, librosaFor text, you can di ...

Posted by surfer on Mon, 25 Oct 2021 14:09:20 +0200