Detailed deployment of python+Django2.0+windows iis project
1, Server directory description
Project deployment home directory:E:\innovation
Python3.6.8 Installation directory:D:\Program Files(x86)\Python\Python36
1,back-end API service
Code and storage
Code directory: E:\innovation\backend
ldap to configure: E:\innovation\backend\innovation\ldap_settings.py
Configuration items such as databas ...
Posted by jungalist on Fri, 15 Oct 2021 14:39:02 -0700
pygame development: code implementation of Marseille logic game
This article mainly introduces the development of pygame. Through this article, you can use pygame to develop a Marseille logic game ~ friends in need can use it for reference. I hope it can be helpful
1, Game introduction
Marseille logic is a logic game similar to Sudoku and minesweeping. It lights up the square according to the data prompts ...
Posted by HockeyDevil07 on Fri, 15 Oct 2021 13:19:36 -0700
Machine learning experiment 2: support vector machine
introduce
In this experiment, we will use support vector machine (SVM) and understand its working principle on data.
The data sets used in this experiment include:
ex2data1.mat - linear SVM classification datasetex2data2.mat - Gaussian kernel SVM classification datasetex2data3.mat - cross validation Gaussian kernel SVM classification dat ...
Posted by egturnkey on Fri, 15 Oct 2021 11:55:14 -0700
Chapter 02 PyTorch Basics
This picture and text is the learning notes of Datawhale team learning pytoch. The main contents include the concept of tensor (0-dimensional, 1-dimensional, 2-dimensional, 3-dimensional, 4-dimensional tensor, etc.), the principle of automatic derivation (understanding through dynamic graph), and the understanding of parallelism.
Chapter 0 ...
Posted by Darklink on Fri, 15 Oct 2021 02:05:00 -0700
Sudo apt get install reports an error software properties common: dependencies: Python 3: any (> = 3.3.2-2 ~)
1. Problem description
If you want to use the command sudo add apt repository PPA: openjdk-r / PPA, but you are prompted that there is no add apt repository command, install itThe add apt repository command is part of the software properties common package, so it is OK to install this package.But once reported an error...> sudo apt-get inst ...
Posted by tron00 on Thu, 14 Oct 2021 22:04:22 -0700
[Python 3 learning notes - basic grammar] how does the input and output function realize dynamic interaction with the computer
In the previous chapters, we have actually touched on the input and output functions of Python. In this chapter, we will introduce the input and output of Python in detail.
If you are interested in learning Python together, click the following icon to add a group:
Output format beautification
Python has two ways to output values: e ...
Posted by yumico23 on Thu, 14 Oct 2021 20:28:25 -0700
python numpy Library -- Learning
import numpy as np
Create an empty vector of length 10:
Z = np.zeros(10)
print(Z)
How to find the memory size of any array
Z = np.zeros((10,10))
print("%d bytes" % (Z.size * Z.itemsize))
Create a vector with a range of 10 to 49
# Z = np.arange(10,50)
# print(Z)
Invert a vector (the first element becomes the last)
# Z = np.arange(50) ...
Posted by phpr0ck5 on Thu, 14 Oct 2021 19:10:52 -0700
Quick start of automation -- Python -- [operation operator] - half an hour a day
Spend half an hour reading this article, and you will get something!
catalogue
Operator
Comparison operator
boolean operation
Binary Boolean operation
data type
operator
Operator
OperatoroperationexampleEvaluated as**index2**38%Modulo / remainder22%85//Integer division / quotient ro ...
Posted by gwolgamott on Thu, 14 Oct 2021 16:39:49 -0700
Urban housing selection analysis (ArcPy Implementation)
1. Background
How to find a residential area with good environment, convenient shopping and convenient school for children is the most concerned problem of property buyers. Therefore, buyers need to study and analyze the information of commercial housing as a whole and choose the most suitable purchase location.
2. Purpose
Learn to use buffe ...
Posted by 1josh13 on Thu, 14 Oct 2021 13:48:59 -0700
Crawler python series [from request to scratch framework] summary
Reptile
Author: ychh_
Bedding content
Reptile classification
Universal crawler:
An important part of grasping system Focus crawler:
Based on the universal crawlerWhat is captured is the local content of the page Incremental crawler:
Detect the update of data in the website
Anti creep mechanism
Portal websites can prevent cr ...
Posted by Vince889 on Thu, 14 Oct 2021 10:55:14 -0700