3 use string
catalogue
3.4 string method
But the string is not dead
3.4.1 find method
3.4.2 join
3.4.3 lower
Title Conversion
Next section: replace, split, strip, translate, etc
3.4 string method
String "inherits" many methods from the string module. In early python versions, these methods appeared as functions.
But the string is ...
Posted by vigour on Wed, 01 Dec 2021 20:35:20 -0800
Python 3 quick start 2 - process control and functions
This article assumes that you already have a foundation of object-oriented programming language, such as Java, and want to quickly understand and use Python language. This paper describes the key syntax, data structure and usage in detail, and illustrates some difficult points for you to get started quickly. Some biased knowledge points will be ...
Posted by ev5unleash on Wed, 01 Dec 2021 17:28:49 -0800
2021 geek challenge
Geek challenge 2021
Welcome2021
Test site: http header request method F12, prompt, please use the WELCOME request method to request this web page burp captures packets, modifies the request method, and finds f11111aaaggg9.php Request the flag again
Dark
Tor browser (onion browser) can be accessed directly. But the premise is that you need ...
Posted by jamcoupe on Wed, 01 Dec 2021 16:08:49 -0800
Machine learning notes (day03)
1. Linear relationship model
A function that predicts through a linear combination of attributes:
w is the weight, b is the offset term, which can be understood as:
2. Linear regression (iteration, self-learning)
Definition: linear regression is a regression analysis modeled between one or more independent variables and dependent v ...
Posted by davidz on Wed, 01 Dec 2021 15:44:24 -0800
Python can meet any API you need
Abstract: the concepts and techniques learned in this tutorial will allow you to practice with any API you like, and use Python to meet any API you may have.
This article is shared from Huawei cloud community< Python and API: successful combination of reading public data >, author: Yuchuan.
Understanding API
API stands for application ...
Posted by rvdb86 on Wed, 01 Dec 2021 15:08:53 -0800
Mining Guarantee Community Pattern Analysis Based on Neo4j
I. Preface
For guaranteed customer group, how to conduct detailed analysis and mining on the guaranteed customer group type? As shown in Figure 1, how do I get the label and how do I label it?
Figure 1: Sample Diagram
Using graph technology, you can label the triangle directly.
Algorithmic steps
Guarantee association data cleaning; ...
Posted by hcoms on Wed, 01 Dec 2021 13:42:04 -0800
Write a reptile that listens to novels with 50 lines of code. You can also listen to novels after taking a bath
On the way, I found that many people like listening to novels with headphones. My colleagues can actually listen to novels with one headphone all day. Xiao Bian expressed great shock. Download and listen to novels in Python today tingchina.com Audio.
List of titles and chapters
Click to open a Book randomly. On this page, ...
Posted by vipul73 on Wed, 01 Dec 2021 02:57:18 -0800
Calculation of cross_entropy loss function of torch (including python code)
1. Call
Firstly, the cross entropy loss function of torch is called as follows:
torch.nn.functional.cross_entropy(input, target, weight=None, size_average=None, ignore_index=-100, reduce=None, reduction='mean')
It is usually written as:
import torch.nn.functional as F
F.cross_entropy(input, target)
2. Parameter description
Input( tensor ...
Posted by wilhud on Wed, 01 Dec 2021 00:39:19 -0800
Conclusion: the overall structure flow chart of t5 transformers
In order to better understand the content of t5 model structure, the overall structure process of t5 model is given here
t5 overall structure and process
During the operation of t5, the key is changed_ States and values_ Value of States
layerselfattention of 6 encoder parts
Enter hidden_staes = (1,8,11,64) First call query_states
query_ ...
Posted by EPJS on Tue, 30 Nov 2021 23:13:03 -0800
Neural network -- Python implements BP neural network algorithm (Theory + example + program)
1, Multilayer perceptron model based on BP algorithm
The multilayer perceptron using BP algorithm is the most widely used neural network so far. In the application of multilayer perceptron, the single hidden layer network shown in Figure 3-15 is the most common. In general, it is customary to call a single hidden layer feedforward network a th ...
Posted by Eratimus on Tue, 30 Nov 2021 21:35:36 -0800