Configure Linux Cluster time synchronization (ntp)

Environmental Science:Now there are three virtual machines of CentOS 7, namely, Hadoop 102, Hadoop 103 and Hadoop 104. Now configure ntp service (central server) on Hadoop 102. Hadoop 103 and 104 pull the time on Hadoop 102 respectively 1. Check whether ntp is installed (check and install all 3 sets, ...

Posted by shaoen01 on Thu, 30 Jan 2020 08:16:00 -0800

TensorRT/samples/common/common.h source code study

TensorRT/samples/common/common.h source code study Preface common.h multiline macro \_\_FILE\_\_,\_\_LINE__,\_\_func\_\_ inline function list initialization lambda expression EXIT_FAILURE assert(function1() && "xxx") PGM file reinterpret_cast Reference link Preface common.h defines the ...

Posted by Thikho on Thu, 30 Jan 2020 08:02:14 -0800

Introduction to deep learning

  Catalog Parameter update 1sgd (random gradient descent) method 1.1SGD drawback 2Momentum method 3AdaGrad method 4Adam method 5 cases 5.1 common folder 5.1.1,common/functions.py 5.1.2,common/gradient.py 5.1.3,common/layers.py 5.1.4,common/util.py 5.1.5,common/optimizer.py 5.1.6,common ...

Posted by tippy_102 on Wed, 29 Jan 2020 20:39:40 -0800

Android advanced notes -- Retrofit source code analysis

Article directory I. information Two, introduction Three. Introduction 4, Source code analysis 4.1. Create retrofit 4.1.1. Building 4.1.2. Add baseUrl 4.1.3. Add GsonConverterFactory 4.1.4.build() 4.2. Create network request 4.3. Call the network request API, generate a call, and execute the reque ...

Posted by jandrews on Wed, 29 Jan 2020 04:17:57 -0800

Python 3 requests module usage example

Requests automatically send HTTP/1.1 requests through urlib3. It can easily implement cookies, login verification, proxy settings and other operations. Python's built-in urllib module is used to access network resources. However, it is troublesome to use and lacks many practical advanced functions. ...

Posted by Cerebral Cow on Wed, 29 Jan 2020 01:30:35 -0800

Baidu feijiang deep learning

Catalog 1. In depth learning development process 1.1 Turing test 1.2 hierarchical processing information 1.3 in depth learning 2. Machine learning 2.1 category 2.2 classification 3. Neural network 3.1 initial understanding of neural network 3.2 example of neural network - paddle learning handwri ...

Posted by TWD on Wed, 29 Jan 2020 01:30:39 -0800

Detectron 2 (target detection framework) - 07: source details - model building - retinaet as an example

The following links are personal opinions on detectron 2 (target detection framework). If there is any error, please point out it. I will correct it as soon as possible. Interested friends can add wechat: a944284742 to discuss technology with each other. If it helps you anything, remember to like it! Be ...

Posted by HA7E on Tue, 28 Jan 2020 05:20:32 -0800

vnpy source reading learning: code reading about MainEngine

Code reading for MainEngine In the entry file, we see the MainEngine and EventEngin sections in addition to the generation of the form interface.Learn about MainEngine's code today. First in the run code, we see the following code main_engine.add_gateway(DeribitGateway) main_engine.add_app(OptionMasterApp) From the above code, you can basically ...

Posted by Orpheus13 on Mon, 27 Jan 2020 20:10:58 -0800

Algorithm and data structure [C + +]: sparse table

In many situations, the best way to store data is tables.   Array is the best choice when the data is densely clustered in a certain coordinate range. For example, to store the scores of students in a class, there are 30 students in the class, numbered from 1-30, 10 courses, numbered from 1-10 Then ...

Posted by jswash on Mon, 27 Jan 2020 05:55:39 -0800

Convolutional neural network class activation graph visualization

Absrtact: This paper introduces a visualization method of convolution network, which is called class activation graph visualization. Using the pre trained VGG16 model, an animal image which was randomly found on the Internet was analyzed, and the thermal map generated was combined with the original imag ...

Posted by ezbie on Mon, 27 Jan 2020 00:13:24 -0800