上一页 1 2 3 4 5 6 ··· 17 下一页

2022年1月26日

随机数生成

摘要: 正态分布随机数 Python下探究随机数的产生原理和算法 统计分布 - JAVA import org.apache.commons.math3.distribution.FDistribution; public class Demo { public static void main(Strin 阅读全文

posted @ 2022-01-26 10:35 iUpoint 阅读(22) 评论(0) 推荐(0) 编辑

2021年12月16日

GitLab配置ssh key

摘要: GitLab配置ssh key 阅读全文

posted @ 2021-12-16 16:17 iUpoint 阅读(36) 评论(0) 推荐(0) 编辑

2021年12月7日

python创建包demo

摘要: 参考链接:https://www.pythoncentral.io/how-to-create-a-python-package/ 项目打包和发布:https://zhuanlan.zhihu.com/p/161930778 python脚本带参数打包及调用方式 #xx.py import sys 阅读全文

posted @ 2021-12-07 18:05 iUpoint 阅读(163) 评论(0) 推荐(0) 编辑

2021年11月30日

抓取url中图片并保存到本地demo

摘要: import requests from lxml import etree from furl import furl url = 'https://dsd.com' html = requests.get(url).text #re.findall('"objURL":"(.*?)",',htm 阅读全文

posted @ 2021-11-30 14:46 iUpoint 阅读(106) 评论(0) 推荐(0) 编辑

使用 lxml 中的 xpath 高效提取文本与标签属性值

摘要: 转自:使用 lxml 中的 xpath 高效提取文本与标签属性值 # 我们爬取网页的目的,无非是先定位到DOM树的节点,然后取其文本或属性值 myPage = '''<html> <title>TITLE</title> <body> <h1>我的博客</h1> <div>我的文章</div> <d 阅读全文

posted @ 2021-11-30 12:54 iUpoint 阅读(776) 评论(0) 推荐(0) 编辑

2021年7月2日

pdf2xls

摘要: pdf表格信息提取 #pip install pdfplumber #pip install xlwt import pdfplumber import xlwt # 定义保存Excel的位置 workbook = xlwt.Workbook() #定义workbook sheet = workbo 阅读全文

posted @ 2021-07-02 09:10 iUpoint 阅读(67) 评论(0) 推荐(0) 编辑

2021年6月13日

评分卡模型

摘要: 参考资料: 评分卡模型实战,toad库的使用 如何成为一名合格的风控算法工程师? kaggle竞赛give me some credit python实战 转自:<风控必备>评分卡A/B/C卡解析(内附流程图) 一、评分模型的种类(信用生命周期)1、新客户筛选1)风险筛选模型2)响应模型2、新客户审 阅读全文

posted @ 2021-06-13 10:16 iUpoint 阅读(1332) 评论(0) 推荐(0) 编辑

2021年6月4日

python使用opencv调用摄像头操作

摘要: 转自: Python3使用opencv调用摄像头录制高清视频 教你如何利用python调用摄像头 #pip3 install opencv-python import cv2 from datetime import datetime FILENAME = 'myvideo.avi' WIDTH = 阅读全文

posted @ 2021-06-04 11:19 iUpoint 阅读(3710) 评论(0) 推荐(0) 编辑

2021年6月3日

爬虫示例

摘要: import requests class MyRequests: # 初始化方法 def __init__(self): # 请求头 self.headers = {"X-Lemonban-Media-Type": "lemonban.v2"} # 属性 # 方法 post/put.. json= 阅读全文

posted @ 2021-06-03 09:06 iUpoint 阅读(39) 评论(0) 推荐(0) 编辑

2021年4月27日

CUDA_10.1.105_418.96_windows + cuDNN-10.1-windows7-x64-v7.6.5.32 + python3.8.5 + tenserflow2.2.0

摘要: 高版本CUDA 在算力低的显卡上不执行核函数,报错:no kernel image is available for execution on the device 1.参考这篇博文,卸载高版本的CUDA,但是卸载CUDA后又要重新下载新的CUDA,配置环境,个人觉得很麻烦,那么可以参考第二种方案 阅读全文

posted @ 2021-04-27 09:09 iUpoint 阅读(554) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 17 下一页

导航