登录
首页 » Python » python 监督分类

python 监督分类

于 2021-05-06 发布
0 360
下载积分: 1 下载次数: 1

代码说明:

对光学遥感影像进行分类,对特征进行标记,使用SVM、随机森林进行分类预测精度

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 量化投资以Python为工具(附数据及代码文件)
    中文版附数据及代码文件 量化投资以Python为工具完整版 以python为工具进行量化投资分析 书中包含python基础、统计学基础、金融理论与投资组合、时间序列与配对交易、技术指标与量化投资
    2019-05-20下载
    积分:1
  • 实体识别(Bert-BiLSTM-CRF-pytorch版源代码)
    Bert-BiLSTM-CRF-pytorch版源代码,实体识别
    2021-10-22 00:31:09下载
    积分:1
  • 猜拳游戏(石头剪刀布.py)
    # 石头 0 剪刀 1 布 2 import randombot = random.randint(0, 2)player = int(input("输入您的结果")) if (player == 1) and (bot == 2) or (player == 2) and (bot == 0) or (player == 0) and (bot == 1): print("玩家获胜") elif player == bot: print("你们打成平手") else: print("电脑获胜")
    2020-11-30下载
    积分:1
  • 告白树(于turtle)
    【实例简介】python 画表白树,树叶上可以写上心爱的人的名字,适用于表白场景
    2021-06-02 00:31:40下载
    积分:1
  • python下载网易云音乐(仅供参考学习)
    python下载网易云音乐(仅供参考学习)
    2019-05-04下载
    积分:1
  • http服务端和socket服务端源码
    http服务端(等待客户端请求)和socket服务端(监听客户端发送数据)
    2020-04-22下载
    积分:1
  • 于Django2、echarts的爬取智联招聘信息数据可视化系统
    个人博客->http://www.facesjoy.cn/article/2019/10/24/17.html
    2019-12-02下载
    积分:1
  • python爬虫爬取旅游信息(含源码,csv文件)
    利用python爬虫技术爬取部分城市的旅游信息
    2021-05-06下载
    积分:1
  • LSTM入门正弦波序列预测
    LSTM入门学习,正弦波序列预测         for i, input_t in enumerate(input.chunk(input.size(1), dim=1)):             h_t, c_t = self.lstm1(input_t, (h_t, c_t))             h_t2, c_t2 = self.lstm2(h_t, (h_t2, c_t2))             output = self.linear(h_t2)  # output.shape:[batch,1]             outputs = [output]  # outputs.shape:[[batch,1],...[batch,1]], list composed of n [batch,1],         for i in range(future):  # if we should predict the future             h_t, c_t = self.lstm1(output, (h_t, c_t))             h_t2, c_t2 = self.lstm2(h_t, (h_t2, c_t2))             output = self.linear(h_t2)  # output.shape:[batch,1]             outputs = [output]  # outputs.shape:[[batch,1],...[batch,1]], list composed of n [batch,1],         outputs = torch.stack(outputs, 1).squeeze(2)  # shape after stack:[batch, n, 1], shape after squeeze: [batch,n]         return outputs
    2021-06-30 00:31:01下载
    积分:1
  • 于K210开发的人脸特征识别2020电赛(demo_face_recognition(2).py)
    基于K210开发的人脸特征识别2020电赛(demo_face_recognition(2).py)
    2020-11-28下载
    积分:1
  • 696518资源总数
  • 106161会员总数
  • 5今日下载