Over fitting and under fitting of hands-on deep learning

It has been said that the power of DL lies in its fitting ability. As long as you can give the curve, its equation can be expressed by a set of neural network. However, this set of neural network needs enough data for training, which leads to the concept of over fitting and under fitting. When the neur ...

Posted by cybersurfur on Mon, 17 Feb 2020 02:00:01 -0800

Learn from day004 --- transfer from Python distributed crawler to create search engine Scrapy

Section 327, web crawler introduction 2 - urllib library crawler Write a simple crawler using the urlib Library of python system urlopen() gets the html source of a URL read() reads the html source content decode("utf-8") converts bytes to strings #!/usr/bin/env python # -*- coding:utf-8 -*- i ...

Posted by _DarkLink_ on Mon, 17 Feb 2020 00:38:08 -0800

Hands on deep learning of Python task04

The main contents of this lesson are machine translation and related technologies, attention mechanism and Seq2seq model, Transformer 1, Machine translation and related technologies Machine translation: when a text is automatically translated from one language to another, neural network is often used ...

Posted by ramus on Mon, 17 Feb 2020 00:34:41 -0800

ENSP -- vgmp and HRP protocol -- dual hot standby of firewall

1, Introduction of firewall hot standby Overview of dual hot standby Dual hot standby is to solve single point of failure and realize smooth transition of business (session table needs to be synchronized) The hot standby modes of Huawei firewall include: hot standby mode and load balancing mode ...

Posted by biannucci on Sun, 16 Feb 2020 04:19:09 -0800

md5sum and random number creation in shell programming

1. What is md5sum MD5 full name is message digest algorithm. This algorithm calculates information of any length bit by bit, and generates a "fingerprint" (or "message digest") with a binary length of 128 bits (hex length is 32 bits). The possibility of different files generating t ...

Posted by damo87 on Sat, 15 Feb 2020 21:09:27 -0800

RPC - preparation phase

It is a technology that requests services from remote computer programs through the network without understanding the underlying network Complete RPC network call process Service consumer: call the client stub in the local call mode; What is a client stub? Even if the remote method is in the local simu ...

Posted by robman2100 on Sat, 15 Feb 2020 18:49:13 -0800

linux command line setting network connection (server setup)

I installed cent os7 on my old DELL computer as a normal development server, and the notebook usually has WIFI and wired network card, so set this notebook as a server with dual network card. See more( www.omob.cc) When I install cent os7, I will minimize the installation. However, during the installation process, during the g ...

Posted by Jonah Bron on Sat, 15 Feb 2020 07:21:08 -0800

Java learning notes object oriented polymorphism

The manifestation of polymorphism A reference to a parent class points to its own child class object. A reference to a parent class can also accept its own child class object. Code embody abstract class Animal { public abstract void eat(); } class Cat extends Animal { @Override public void eat() { System.out.println("eat fis ...

Posted by immobilarity on Sat, 15 Feb 2020 05:52:24 -0800

Win32 process communication -- the use of mail slot

Post slot Mail slot is a one-way interprocess communication mechanism provided by Windows operating system, which can be used in single machine or multi machine distributed environment on network. For relatively short low-frequency messages, it is usually easier to use a mail slot than a named pipe o ...

Posted by supergrover1981 on Fri, 14 Feb 2020 05:56:33 -0800

How to use Google's cloud computing resources (Google Colab) to train their own neural network and the application of model preservation and transplantation

The rise of deep learning has brought us new efforts and trial directions, and also brought higher requirements for the computing power of machines. GPU acceleration is the key to improve computing speed, but for most people, buying a good video card is too expensive. If you are not a local tyrant, i ...

Posted by blurredvision on Fri, 14 Feb 2020 05:35:54 -0800