Variable learning
variable
target
Be able to say the main role of variablesCan write the initialization of variablesBe able to say the naming convention of variablesCan draw how variables are stored in memoryBe able to write cases of exchange variables
catalogue
Variable overviewUse of variablesVariable syntax extensionVariable naming conventionExchange vari ...
Added by Mobile on Wed, 09 Mar 2022 10:39:49 +0200
Summary of Rust closure
Fn / FnMut / FnOnce
The essence of closure is to implement the anonymous structure of one of the above three call trait s. Capturing environment variables refers to the way the anonymous structure treats environment variables. You can access environment variables in the anonymous structure only with immutale reference, modify environment vari ...
Added by liquidchild_au on Wed, 09 Mar 2022 10:33:03 +0200
[Python automated testing 27] web automated testing theory, environment construction and common operations
1, Foreword
this article will mainly explain the basic theory of Web automated testing in Python, the construction of Webdriver environment and some basic common operations of automated testing. In addition, there is a portal of a series of articles below, which is still being updated. Interested partners can also go to chec ...
Added by moallam on Wed, 09 Mar 2022 10:20:24 +0200
Using navigation components: conditional navigation | MAD Skills
This is the second MAD Skills series on navigation. This is the second article in the navigation component series. If you want to review the content published in the past, please refer to the following link:Overview of navigation componentsNavigate to dialog boxUse SafeArgs when navigating through appsUse deep link navigationBuild your first ap ...
Added by harrisonad on Wed, 09 Mar 2022 10:07:25 +0200
Summary of basic knowledge points of Java II: abstract classes and interfaces
1: Abstract classes and interfaces
abstract class
1. Abstraction is to abstract the common characteristics of a class of entities. The parent class provides some attributes and behaviors for the child class, and the child class implements specific behaviors according to business requirements.
2. Abstract classes are decorated with abstract. Su ...
Added by lol on Wed, 09 Mar 2022 10:03:03 +0200
ES6 basic introduction
1, First acquaintance with ES6
es6 compatibility view
1. let and const
let, like var, is used to declare variables whose values can be changedconst is used to declare constants. Once a constant is initialized, it cannot be re assignedconst must be initialized when declared
let name = 'toot toot'
let age = 18
const sex = 'female' ...
Added by toledojimenez on Wed, 09 Mar 2022 10:00:51 +0200
Actual JVM: principle and application of ClassLoader
preface
I was asked such a question in the original interview. If you build a Java Lang. String class. Is the String class used in the system your defined String class or the String class in the native api?
You can try and find that the String class in the native api is still used in the final system. Why does this happen? This has to start ...
Added by colbyg on Wed, 09 Mar 2022 09:56:50 +0200
STM32-HAL library motor development encoder
Encoder programming is based on STM32F407IG, and the pre basic knowledge is timer input capture.
Detailed explanation of principle
The types of encoders include incremental encoder, absolute encoder and hybrid absolute encoder. This experiment uses incremental encoder The schematic diagram of the basic encoder is shown in the figure below. Ro ...
Added by nsarisk on Wed, 09 Mar 2022 09:47:54 +0200
[GNN benchmark] Figure benchmark data set of machine learning
Figure ImageNet of neural network? Open source millions of OGB benchmark data sets such as Stanford University
In the small data full of "MNIST", does graph neural network also need a big benchmark such as "ImageNet"? Recently, Professor Jure Leskovec of Stanford University announced the open source of Open Graph Benchmar ...
Added by scopley on Wed, 09 Mar 2022 09:47:27 +0200
Practical learning notes of Pytrch neural network_ 12 (example) predicting the survival of passengers on the Titanic
1 sample processing
1.1 load sample code --- Titanic forecast Py (Part 1)
import numpy as np
import torch
import torch.nn as nn
import torch.nn.functional as F
from scipy import stats
import pandas as pd
import matplotlib.pyplot as plt
import os
os.environ["KMP_DUPLICATE_LIB_OK"]="TRUE"
def moving_average(a, w=10):#Define a function to calcu ...
Added by skiingguru1611 on Wed, 09 Mar 2022 09:35:34 +0200