Implementation of convolutional neural network with TensorFlow
1. Introduction of convolutional neural network Convolutional neural network (CNN), the earliest one was in 1860's. biologists found that each visual neuron can only process a small area of visual image, that is, the receptive field. Later, in the 1980s, Japanese scientists put forward the concept of neurocognitron, which can also be regarded a ...
Added by ffdave77 on Wed, 01 Apr 2020 05:55:38 +0300
Crawling pictures on splash with selenium
Because at the beginning of learning crawler, there was a project to crawl a picture of a website, a picture. [website link] (https://www.splash.com/),
Today, I thought about this website when I was thinking about the project. Now I want to use selenium to scroll down the page, so as to crawl the content of multiple pag ...
Added by captainplanet17 on Tue, 31 Mar 2020 13:32:07 +0300
android Golden Map Network Path Implement Custom marker and Click Pop-up Custom Window
Where maps are used in android is everywhere. Take a note of your network path today to generate a custom marker, click on the marker to pop up the custom window (Golden Map is used here)
Here we use Grilde to load web pictures, because it's so convenient!
Under android studio, add the following dependencies to the app/build.gradle file:
comp ...
Added by chwebdesigns on Mon, 30 Mar 2020 23:21:48 +0300
Kotlin learning notes (IV) - file IO operation and multithreading
Kotlin file IO operation and multithreading
Kotlin file IO operation and multithreading
IO operation
regular expression
Multithreading
IO operation
// On the basis of the original extension functions, there are mainly the following:
Kotlin/io/files/FileTreeWalk.kt
kotlin/io/files/Utils.kt
kotlin/io/files/FileRe ...
Added by johnnycsh on Mon, 30 Mar 2020 18:48:05 +0300
WeChat Applet Learn Notes Music Player (Head Tab Tag)
WeChat Applet Learning Notes (3) Music Player (Head Tab Tag)
Components are the basic components of the View Layer (UI), with some basic functions and WeChat style.In fact, components are the encapsulation of HTML5 elements by the development framework.
1. Components
1. Use of components
<Label Name Attribute="Attribute Value" ...
Added by stvs on Fri, 27 Mar 2020 08:11:46 +0200
Squid installation example
Github-blog CSDN-blog
windows version
Proxy Download
http://squid.diladele.com/
Installation configuration
1. Install without stopping next;
2. Remove the default from all the files at the end of default under squid/etc / and change them to conf files
3. Configure the squid.conf file according to the lo ...
Added by Cantaloupe on Thu, 26 Mar 2020 19:16:57 +0200
One click online installation of redis database by shell script (implemented by function)
The previous article gives the process of manual compilation and installation of redis, and gives the process of online installation of redis when simulating the establishment of redis cluster, so I want to write a redis script for online installation. In this paper, I mainly use shell functions to realize and verify the process of online ins ...
Added by philipolson on Wed, 25 Mar 2020 16:47:34 +0200
042. Cluster network - flannel and calico
One Flannel component
1.1 introduction to flannel
Kubernetes' network model assumes that all pods are in a flat network space that can be directly connected. If you need to implement this network assumption, you need to implement mutual access between Docker containers on different nodes, and then run kubernetes. At present, there are many op ...
Added by Tainted Kitten on Tue, 24 Mar 2020 09:23:58 +0200
Python3 Standard Library: io Text, Decimal, and Original Stream I/O Tools
1. io Text, Decimal, and Original Stream I/O Tools
The io module implements classes on top of the interpreter's built-in open() to complete file-based input and output operations.These classes are properly decomposed so that they can be reassembled for different purposes - for example, to support writing Unicode data to a network socket.
1.1 St ...
Added by rharter on Sat, 21 Mar 2020 04:56:59 +0200
Nginx Common Classic Configuration | Reverse Proxy, HTTPS Redirection, Port Forwarding
Secondary directory mapping
At present, there are more scenarios for front-end and back-end project separation, usually one port for front-end and one port for back-end.
If the front end is https://example.com/index.html, the interface called is https://example.com:4433
Such a deployment can be cumbersome for small projects, but you can also ...
Added by Akenatehm on Sun, 15 Mar 2020 19:49:40 +0200