Plan: MK 2nd place in the regular season

Oar regular season: remote sensing image land segmentation - 8th place scheme in November 1. Introduction to the competition 1.1 game page portal: Regular season: remote sensing image block segmentation 1.2 introduction to competition questions This competition is adapted from the preliminary competition of 2020 CCF BDCI remote sensing imag ...

Posted by Nirvana on Mon, 31 Jan 2022 03:46:11 +0100

Using Python program to realize Morse password translator Python theme month

Morse code is a method of transmitting text information as a series of on-off tones, lights or clicks. It can be directly translated by a familiar partner without special equipment. It is named after Samuel F. B. Morse, the inventor of the telegraph. algorithm The algorithm is very simple. Every character in English is replaced by a series of ...

Posted by mamuni on Mon, 31 Jan 2022 02:50:58 +0100

Advanced tutorial of Pandas: rearrangement and rotation of Dataframe

brief introduction Using Pandas's pivot method, DF can be rotated and transformed. This paper will explain the secret of pivot in detail. Using Pivot pivot is used to reorganize the DF, and use the specified index, columns and values to reconstruct the existing DF. Take a Pivot example: Through pivot change, the new DF uses the value ...

Posted by Angry Coder on Mon, 31 Jan 2022 02:35:06 +0100

Python learning notes - game project

Add alien row To create an alien colony, you need to calculate how many lines the screen can hold and repeat the cycle of creating one line of aliens a corresponding number of times. In order to calculate the number of rows that can be accommodated, we calculate the available vertical space by subtracting the screen height from the upper m ...

Posted by randydg on Mon, 31 Jan 2022 01:23:10 +0100

Taobao user behavior analysis project

Taobao user behavior analysis project Note: the project passes the Jupiter notebook. Third party libraries such as pandas, numpy, matplotlib and seaborn are used to analyze the data in different dimensions. 1, Project background Taking Taobao app platform as the data set, this data report analyzes the behavior of Taobao users through industr ...

Posted by bookbuyer2000 on Mon, 31 Jan 2022 00:42:19 +0100

Deep learning 4 Differential and automatic derivation

Author: baiyucraft BLog: baiyucraft's Home Original text: Hands on learning and deep learning 1, Differential and derivative    I believe everyone knows the concept. Draw a picture according to the book: import numpy as np from matplotlib import pyplot as plt def set_figsize(figsize=(3.5, 2.5)): """set up matplotlib The ...

Posted by Leppy on Mon, 31 Jan 2022 00:38:44 +0100

Python crawler: crawl Python books on Taobao

Use request to crawl Python books on Taobao The main crawling targets are: Commodity title, sales store, number of payers, current selling price, store location, tmall commodity ID, book title, author, pricing, publisher name, ISBN number, etc Step 1: bypass anti climbing Facing the anti crawling mechanism of Taobao, we need to log in to our ...

Posted by d401tq on Mon, 31 Jan 2022 00:03:38 +0100

YOLO code interpretation_ model.py

1 Overview This document is mainly composed of Two classes, Darknet yolayer,Several functions create_modules,get_yolo_layers,load_darknet_weights,save_weights,convert,attempt_download form Darknet's constructor first calls parse_model_cfg,create_modules,get_yolo_layers are three functions, so let's start with them and then further ...

Posted by aunquarra on Sun, 30 Jan 2022 23:38:35 +0100

100 classic Python exercises pdf (with answers)

A novice Python must be familiar with the basics of Python before seeking a job in Python programming. The technical team of DataFlair, a programming website, shared a collection of the most common Python interview questions, including both basic Python interview questions and advanced version questions to guide you in preparing for the intervi ...

Posted by jacko310592 on Sun, 30 Jan 2022 22:23:05 +0100

Python learning notes - game project

Add alien row To create an alien colony, you need to calculate how many lines the screen can hold and repeat the cycle of creating one line of aliens a corresponding number of times. In order to calculate the number of rows that can be accommodated, we calculate the available vertical space by subtracting the screen height from the upper margi ...

Posted by Pethlehemm on Sun, 30 Jan 2022 20:10:53 +0100