TCN concept + origin + principle + code implementation of time domain / time convolution network for advanced machine learning
TCN from "ABA ABA" to "balabalabala"
The concept of TCN (why? What problems can be solved)TCN's parents (origin)Introduction to the principle of TCNCode!
1. What is TCN (time domain convolution network, time convolution network) and what can it do
Main application directions:
Time series prediction, probability predict ...
Posted by cheekychop on Fri, 07 Jan 2022 02:40:23 +0100
linux network settings
View network configuration
Maximum mtu packet transfer rate
View network interface information ifconfig
View all active network interface information
Execute ifconfig command View specified network interface information
ifconfig network interface
[root@localhost ~]# ifconfig ens33
ens33 flags=4163<UP,BROADCAST,RUNNING,MULTICAST& ...
Posted by mecha_godzilla on Fri, 07 Jan 2022 01:51:55 +0100
Configuration exercise for dynamic routing RIP
Example:
Requirement:
R1-R2-R3-R4-R5 runs RIPV2, R6-R7 runs RIPV1 1. Use reasonable addresses to plan the network and create loopback interfaces for each 2, R1 Create Loop 172.16.1.1/24 172.16.2.1/24 172.16.3.1/24 3, requiring R3 to access R1 loops using R2 4. Reduce the number of routing entries and increase routing delivery security 5 ...
Posted by justinma on Thu, 06 Jan 2022 18:24:18 +0100
Section 44 ACL - Rules for controlling access to the interface gate on the router
1 ACL overview
Definition: Access Control List access control list. Access Control List (ACL) is an access control technology based on packet filtering. It can filter the data packets on the interface according to the set conditions and allow them to pass or discard.Function: access control list is widely used in routers and layer 3 switch ...
Posted by Coreyjames25 on Thu, 06 Jan 2022 17:48:52 +0100
Fundamentals of TCP/UDP programming
1, Brief description of TCP protocol
1. Introduction
Transmission Control Protocol (TCP) is a connection oriented, reliable and byte stream based transport layer communication protocol, which is defined by IETF RFC 793. TCP is designed to adapt to the hierarchical protocol hierarchy supporting multi network applications. Paired processes ...
Posted by boby on Thu, 06 Jan 2022 16:57:41 +0100
Day26Qt implements QTcpServer-2022-01-06
Qt Network (I) tcp server
Introduction TCP
TCP protocol, transmission control protocol, is an underlying network protocol for data transmission. Many Internet protocols, including FTP and HTTP, are based on TCP protocol. TCP is a reliable transmission protocol for data flow and connection. QTcpSocket class provides an interface for TCP, which ...
Posted by hejgelato on Thu, 06 Jan 2022 13:50:10 +0100
NFS file sharing service
NFS file sharing service
Introduction:
NFS is a network file system
A general sharing solution for sharing file system through network developed by sun company;
The NFS listening port is tcp 2049 port;
RPC service records port information, ip address, etc
RPC: remote procedure call protocol;
Use nfs file sharing and enable rpcbind servic ...
Posted by dan90joe on Thu, 06 Jan 2022 03:00:31 +0100
Chapter 35 network application
PyQt5 provides QUdpSocket and QTcpSocket classes to implement UDP and TCP transmission protocols respectively. Both protocols can be used to create network client and server applications. The former (UDP) sends data from one host to another in the form of packets. It is only responsible for sending, but does not care whether the sending is succ ...
Posted by phychion on Thu, 06 Jan 2022 02:10:51 +0100
java network learning notes
1: InetAddress class
1. What is InetAddress
This class represents an Internet Protocol (IP) address.
2. Common usage:
InetAddress inetAddress = InetAddress.getByName("www.jd.com");//Create an InetAddress object through the domain name
InetAddress inetAddress1 = InetAddress.getLocalHost();//Create a native InetAddres ...
Posted by satanclaus on Wed, 05 Jan 2022 22:59:28 +0100
Notes on OSPF dynamic routing protocol: an example of comprehensive application
Notes on OSPF dynamic routing protocol (8): examples of comprehensive application of OSPF Protocol
The company's network topology is shown in the following figure: the basic configuration of OSPF has been completed. As a network administrator, there are several problems to be solved:
l. the communication between the head office and branches A a ...
Posted by moniphp on Wed, 05 Jan 2022 16:11:48 +0100