2018-ECCV-Progressive Neural Architecture Search-Paper Reading
PNAS
2018-ECCV-Progressive Neural Architecture Search
Johns Hopkins University & Google AI & Stanford
GitHub: 300+ stars
Citation: 504
Motivation
current techniques usually fall into one of two categories: evolutionary algorithms(EA) or reinforcement learning(RL).
Although both EA and RL methods have been able to lea ...
Added by dorgon on Sat, 23 May 2020 05:56:09 +0300
gRPC load balancing (client load balancing)
preface
Part I This paper introduces how to use etcd to realize service discovery. On the premise of service discovery based on etcd, this paper introduces how to realize load balancing of gRPC client.
gRPC load balancing
The official gRPC document provides a load balancing scheme for gRPC Load Balancing in gRPC , this scheme is designed fo ...
Added by zszucs on Tue, 19 May 2020 04:47:29 +0300
elasticsearch 7.7 add user name and password authentication
1. First of all, I do not need to install x-pack separately when the ES version of single instance and single node is 7.7
{
"name" : "node-1",
"cluster_name" : "myes",
"cluster_uuid" : "OGiYluA_Sxynl2bXl1TcbQ",
"version" : {
"number" : "7.7.0",
"build_flavor" : "default",
"build_type" : "rpm",
"build_hash" : "81 ...
Added by bimo on Mon, 18 May 2020 17:24:39 +0300
Three solutions of verification code recognition in Python crawler
In the process of Python crawler, some websites need to pass the verification code before entering the web page. The purpose is very simple, that is to distinguish between human reading and machine crawler. The problem of verification code seems simple. It is not easy to achieve high accuracy. In order to learn more about reptiles, the followin ...
Added by j05hr on Mon, 18 May 2020 11:41:05 +0300
PHP uses Redis in seven common scenarios
Redis is an open source, network-enabled, memory-based and persistent log, Key-Value database written in the ANSI C language, and provides multilingual API s.
This article focuses on the main scenarios for using Redis with PHP.
Simple String Cache Actual
$redis->connect('127.0.0.1', 6379);
$strCacheKey = 'Test_bihu';
//SET Application ...
Added by chadbobb on Tue, 12 May 2020 09:51:38 +0300
How to use Lifecycle components
2017/5/18 Google IO
Android Architecture Components: a new collection of libraries that can easily manage the UI component life cycle and handle data persistence. Help you design robust, testable, and maintainable applications.
In the following, the life cycle of components such as Fragment and Activity directly uses ...
Added by nodi on Sun, 03 May 2020 09:45:43 +0300
Flexmark Java markdown add target attribute to link
Flexmark Java is a java version of Markdown conversion tool, which basically supports all Markdown syntax and has good scalability. This paper mainly adds target attribute to link through extension form
The extension of this article will also support Spring Properties for dynamic configuration, domain name exclusion, relative path exclusion, ...
Added by mcccy005 on Sat, 02 May 2020 22:44:19 +0300
CentOS 7 installation using the Shadowsocks client
Experimental background: since the installation of k8s requires the use of an agent to use the official source, it is necessary to configure an agent in CentOS7 for scientific Internet access
Install the Shadowsocks client
Install epel source and pip package management
sudo yum -y install epel-release
sudo yum - ...
Added by aconway on Thu, 30 Apr 2020 13:53:43 +0300
Recommend a better HTTP(S) proxy server than fiddlecore
Original text:
Recommend a better HTTP(S) proxy server than fiddlecore
Why not Fiddler core?
When it comes to Fiddler core, you may not be familiar with it, so its brother Fiddler is familiar with it. I usually use it to grab packets, simulate low bandwidth, and modify requests. Fiddler is essentially an HTTP proxy server. FiddlerCore is ...
Added by Valdhor on Tue, 28 Apr 2020 12:22:48 +0300
Send by Python email, novice must learn
You may have found this tutorial because you want to send email using Python. Maybe you want to write a code to receive email reminders, send a confirmation email to users when they create an account, or send an email to organization members to remind them to pay their dues. Sending mail is a time-consuming and error prone task, but it can be ...
Added by amwd07 on Sun, 26 Apr 2020 10:14:56 +0300