The 20th Day of "Deep Learning by Hands" - Networks on the Network (NiN)

First let's look at the characteristics of NiN networks: (1) Use of 1 x 1 convolution Use the mlpconv network layer instead of the traditional convolution layer.The mlp layer is actually a convolution plus traditional mlp (Multilayer Perceptor), because convolution is linear and mlp is nonlinear, which ...

Posted by sillysillysilly on Sat, 10 Aug 2019 04:48:07 +0200

Synchronize system time through sntp

Synchronize system time through sntp For small Internet of Things devices, few interfaces provide users with data interaction, so the system time of our devices can only be updated locally after obtaining the network time.Then, you need to use the sntp protocol. ntp protocol: The NTP(Network Time Prot ...

Posted by 00tank on Thu, 08 Aug 2019 05:49:13 +0200

Deep Learning (DL): Convolutional Network (CNN) from Real to Real

order Deep learning is on fire now, although I have taken deep learning courses and used keras to do some experiments, I still feel that I do not understand them thoroughly.Recently, I have carefully studied the works of my predecessors and scholars. I thank them for their selfless cont ...

Posted by myleow on Thu, 08 Aug 2019 05:04:09 +0200

Elastic Search 7.1.1 Cluster Building

1. Cluster Introduction: First, three Elastic Search servers are required, and Elastic Search 7.1.1 is successfully installed. After successful installation, three Elastic Search services are started respectively (see Installation Method: Elastic search installation tutorial After service start-up, all ...

Posted by neoform on Wed, 07 Aug 2019 07:58:26 +0200

Regular Analysis and bs4 Analysis of Reptiles

Regular parsing (re module) Single character: ...: All characters except newlines []: [aoe] [a-w] matches any character in the set \ d: Number [0-9] \ D: Non-digital \ w: Numbers, letters, underscores, Chinese \ W: Nonw \ s: All blank character packages, including spaces, tabs, page breaks, an ...

Posted by steved on Tue, 06 Aug 2019 13:53:36 +0200

FastDFS Learning-SpringBoot Integrated FastDFS

Relevant dependency <!-- https://mvnrepository.com/artifact/net.oschina.zcx7878/fastdfs-client-java --> <dependency> <groupId>net.oschina.zcx7878</groupId> <artifactId>fastdfs-client-java</artifactId> <version>1.27.0.0</version> </dependency& ...

Posted by karq on Tue, 06 Aug 2019 10:04:29 +0200

How does Baishi Express Free Docking Express Bird Single Number Query api Interface

The API interface of express inquiry is to use logistics number to query logistics information. Mainly used in e-commerce malls, ERP systems, WMS systems, express cabinets, banks and other enterprises. Several express logistics companies have unified interface access. It is suggested that docking interface providers can access multiple express ...

Posted by revjoe on Tue, 06 Aug 2019 08:10:34 +0200

Redis Cluster Daily Operating Commands

Links to the original text: https://www.cnblogs.com/kevingrace/p/7910692.html 1. The following commands are unique to the Redis Cluster cluster. To execute the following commands, you need to login redis first: [root@manage redis]# Redi ...

Posted by abhikerl on Mon, 05 Aug 2019 13:32:50 +0200

TensorFlow Practical Warfare Lesson 7 (dropout Solving overfitting)

Dropout Solves overfitting   overfitting is also known as over-learning and over-fitting. He is a common problem in machine learning.     The black curve is the normal model, and the green curve is the overfitting model. Although the green curve accurately distinguishes all the training data, it does not describe the overall characterist ...

Posted by ev5unleash on Mon, 05 Aug 2019 12:42:05 +0200

Graph Theory (Not Completed)

I. Definition of Graph Graph consists of two sets, one is a non-empty but finite vertex set V, and the other is a set E describing the relational edges between sets.Therefore, a graph can be expressed as G=(V,E). Each edge is a pair of vertices (v,w) and v,w < V.Usually | V | and | E | denote the number of vertices and the number of edges. ...

Posted by zoobooboozoo on Mon, 05 Aug 2019 06:15:00 +0200