-
Python黑帽子 黑客与渗透测试编程之道-[中文]
说明: Python黑帽子 黑客与渗透测试编程之道-[中文](Python black hat hacker and the way of penetration test programming - [Chinese])
- 2020-05-30 20:19:52下载
- 积分:1
-
k 先生代码数据考虑
此代码包含ML代码K均值kklk实现手段和实现
- 2022-03-12 23:04:40下载
- 积分:1
-
利用深度神经网络获取图像目标轮廓的hed模型
利用全卷积网络进行图像处理,获取目标物的轮廓,实现提取边缘的目地。该神经网络框架不同于普通的卷积神经网络(CNN),对网络层进行了变形,采用全卷积的方式,不再要求输入图像的尺寸大小统一,可以输入任意大小的图像,每一个卷积层都会计算它的loss
- 2022-02-15 18:33:26下载
- 积分:1
-
机器学习之人脸识别与检测
使用C++、OpenCv实现了人脸的检测和标识,能够通过摄像头检测到人脸并处理保存,再经过训练后能过识别出已存储的人脸。主要有检测、训练、识别三大功能。附带免安装版试用,之后可以自己配置好就可以使用了。集体配置方式里面都有,照着配置就可以。
- 2022-02-25 18:43:35下载
- 积分:1
-
people000
基于OPENCV的人数统计系统,可以对目标图像进行分析,可以统计出目标图像内的人数数量(OPENCV the number of statistical systems, the target image can be analyzed, you can count the number of people within the target number of images)
- 2011-09-07 12:29:11下载
- 积分:1
-
小波变换python简单练习
【实例简介】
- 2021-09-09 00:31:06下载
- 积分:1
-
新闻爬虫代码
1、自动爬取新闻页面的信息
2、使用Python语言编写(1. Automatic crawling of news page information
2. Writing in Python Language)
- 2019-03-20 16:39:32下载
- 积分:1
-
K-means有注释版本
K-means算法是最为经典的基于划分的聚类方法,是十大经典数据挖掘算法之一。K-means算法的基本思想是:以空间中k个点为形心进行聚类,对最靠近他们的对象归类。通过迭代的方法,逐次更新各簇的形心的值,直至得到最好的聚类结果。(K-means algorithm is the most classical partition-based clustering method and one of the ten classical data mining algorithms. The basic idea of K-means algorithm is to cluster k points in space and classify the objects closest to them. Iteratively, the values of centroid of clusters are updated one by one until the best clustering results are obtained.)
- 2018-08-30 13:53:12下载
- 积分:1
-
naive_bayers
朴素贝叶斯的在Python中的调用方法以及对数据的训练及预测方法(Naive bayesian call methods in Python and the training and prediction methods for data)
- 2018-05-30 11:09:01下载
- 积分:1
-
python 井字棋
PYTHON 井字棋,#井字棋
import random
#是否重来一次
def playAgain():
print("你想重玩一次吗?(是/否)")
return input() == "是"
#选择什么符号棋子
def inputPlayerLetter():
letter = ""
while not (letter =="X" or letter =="O"):
print ("你想选x还是o")
letter = input().upper()
if letter == "X":
return ["X","O"]
else:
return ["O","X"]
- 2022-06-17 20:22:26下载
- 积分:1