KTV song recommendation - self coding - logical regression - gender judgment
Preface
In the previous articles, PCA and SVD dimensionality reduction are shared. Today, another dimensionality reduction method, auto encoding, is shared.
What is self coding
Self coding is a data compression algorithm. The characteristics of encoder and decoder are as follows:
For specific data
Lossy compression
Automatic learning
The enco ...
Added by unistake on Fri, 13 Mar 2020 14:02:31 +0200
java server development servlet: 2. Input, read and output employee data. get and post submission methods
Catalog
I. Preface
2, Input, read and output employee data. get and post submission methods
1. HTML form submission Code: addEmp.html
2. Profile code: web.xml
3. Java code: AddEmpServlet.java
4. Effect demonstration
(1) post submission method
(2) get submission method
(3) Description
I. Pr ...
Added by GinsBabu on Tue, 10 Mar 2020 06:00:45 +0200
Python reptile battle - crawling historical weather data
Recently, the project needs to crawl the historical weather data of Hefei City, analyze several weather data websites, and finally select Weather post website . discuss the problems encountered in the implementation process for future reference.
Step analysis
Here, I use the requests library beautiful ...
Added by modcar on Tue, 03 Mar 2020 12:04:54 +0200
Python crawler notes -- crawling for the new fun Pavilion
Preliminary preparation:
(1) Install requests (get HTML information for the entire web page)
In cmd, use the following command to install requests:
pip install requests
(2) Install beautiful soup4 (parse HTML information and extract what we need)
In cmd, use the following command to install requests:
p ...
Added by manichean on Tue, 03 Mar 2020 09:51:48 +0200
Python data analysis -- sales data analysis of second-hand house of a real estate website
1, Process thinking of data analysis
1. Clarify the purpose and thinking of the analysis / put forward the hypothesis
2. Data collection
3. Data processing / collation
4. Data analysis / validation assumptions
5. Data presentation / visualization chart
6. Report writing
2, Analysis purpose
Demand 0 ...
Added by darktimesrpg on Tue, 03 Mar 2020 07:20:30 +0200
Data collected from A-share data analysis: stock lists and stock prices
Data is the premise of data analysis. This paper mainly describes how to use Python to collect the basic stock data of Shanghai, Shenzhen and China: stock list and stock price.
1. Stock List
As we all know, for A shares, there are two exchanges in China, namely the Shanghai Stock Exchange and the Shenzhen Stock Exchange.We mainly get a list ...
Added by keeB on Sun, 01 Mar 2020 05:14:56 +0200
Number Summary/Math Number Function from python
Number Number Number
In python's documentation, there are several points to note:
The Math module does not support functions of complex numbers, which are calculated using cmath.So most of them don't support complex numbers.
Under the math module, floating-point numbers are returned unless the label ...
Added by bad_gui on Sun, 01 Mar 2020 03:45:52 +0200
PyQt project practice work assistant (4 use QSqlTableModel and tableView to implement Todolist)
PyQt project practice work assistant (4 use QSqlTableModel and tableView to implement Todolist)
In this part, the functions of querying, adding, modifying, deleting and exporting todolist work to do are realized through QSqlTableModel and tableView control
Article directory
PyQt project practice wor ...
Added by jtbaker on Sun, 23 Feb 2020 12:34:10 +0200
Intelligent target detection 18 - Keras builds fast RCNN target detection platform
Intelligent target detection 18 -- Keras builds FasterRCNN target detection platform
Learn foreword
What is FasterRCNN target detection algorithm
Source download
Fast RCNN implementation ideas
1, Forecast part
1. Introduction to backbone network
2. Get Proposal box
3. Decoding of Proposal box
4. Ut ...
Added by joshblue on Sun, 23 Feb 2020 08:09:44 +0200
Server and client novice
Don't talk too much, just go to the script.
The first is the server:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
namespace Sever
{
class Program
{
static byte[] buffer = new byte ...
Added by triffik on Sat, 22 Feb 2020 18:16:49 +0200