Headers Lables Each label can be up to 63 characters long, and an entire FQDN(fully qualified domain name) is limited to at most 255 (1 byte) characte ...
分类:
其他好文 时间:
2020-05-03 14:50:55
阅读次数:
63
The ranklist of PAT is generated from the status list, which shows the scores of the submissions. This time you are supposed to generate the ranklist ...
分类:
其他好文 时间:
2020-04-30 23:17:34
阅读次数:
62
爬取起点月票榜 一、实现过程: 1、找到一个感兴趣的网页——起点中文网的月票排行榜(https://www.qidian.com/rank/yuepiao),并尝试爬取: 2、分析网页源代码,思考提取数据方法 书名在h4标签,简介在p标签 利用soup.find_all(name, attrs, r ...
分类:
其他好文 时间:
2020-04-30 19:36:03
阅读次数:
100
简述:BeautifulSoup 外, python常用的解析HTML、XML的第三方库:lxml, lxml中语法为xpath 1. 使用爬取的页面数据,来定义一个对象。 2. 使用xpath来解析这个对象中的标签树。 """lxml使用xpath语法,来解析HTML""" from lxml i ...
分类:
Web程序 时间:
2020-04-30 17:24:01
阅读次数:
86
1. machine learning分类 supervised learning:output class is given (regression + classification) unsupervised learning 2. regression预测的结果是一个连续的值,即对x y进行拟 ...
分类:
其他好文 时间:
2020-04-30 14:00:56
阅读次数:
71
AutoInt:基于Multi-Head Self-Attention构造高阶特征 本文介绍 2018年 发布在 arXiv 上文章《AutoInt: Automatic Feature Interaction Learning via Self-Attentive Neural Networks》 ...
分类:
其他好文 时间:
2020-04-29 11:12:43
阅读次数:
113
http://qt.gtimg.cn/?q=s_sz399001,s_sz399300,s_sh000016,s_sz399004,bkqtRank_A_sh,bkqtRank_B_sh,bkqtRank_A_sz,bkqtRank_B_sz&_=1588088374275 输出: v_s_sz39 ...
分类:
其他好文 时间:
2020-04-29 01:16:21
阅读次数:
125
QATM: Quality-Aware Template Matching For Deep Learning 2020-04-27 11:50:16 Paper: https://arxiv.org/pdf/1903.07254.pdf Code: https://github.com/kamat ...
分类:
其他好文 时间:
2020-04-27 13:31:58
阅读次数:
61
1、绘制正弦函数曲线 import matplotlib.pyplot as plt import numpy as np import pandas as pd #设置在notebook中直接展示图形输出 %matplotlib inline #设置图片清晰度 %config InlineBack ...
分类:
其他好文 时间:
2020-04-27 13:15:37
阅读次数:
104
1.一般的模型构造、训练、测试流程 # 模型构造 inputs = keras.Input(shape=(784,), name='mnist_input') h1 = layers.Dense(64, activation='relu')(inputs) h1 = layers.Dense(64, ...
分类:
其他好文 时间:
2020-04-27 09:44:37
阅读次数:
87