Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3658360
  • 博文数量: 365
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 2522
  • 用 户 组: 普通用户
  • 注册时间: 2019-10-28 13:40
文章分类

全部博文(365)

文章存档

2023年(8)

2022年(130)

2021年(155)

2020年(50)

2019年(22)

我的朋友

发布时间:2021-04-19 17:17:44

machine_learning.py这部分代码对应文章的机器学习部分。# -*- coding: utf-8 -*- import os import warningsimport numpy as npfrom sklearn import preprocessingimport pickle# 用于机器学习的第三方库导入from sklearn.model_selection import GridSearchCVfrom sklearn.nei.........【阅读全文】

阅读(1835) | 评论(0) | 转发(0)

发布时间:2021-04-16 17:13:22

平滑线性空间滤波器盒状态滤波import numpy as npfrom scipy import signalfrom skimage import data, iofrom matplotlib import pyplot as plt# 定义二维灰度图像的空间滤波函数def correl2d(img, window):    s = signal.correlate2d(img, window, mode='same', b.........【阅读全文】

阅读(1307) | 评论(0) | 转发(0)

发布时间:2021-04-14 16:59:46

import pandas as pdimport matplotlib.pyplot as plt#读取文件score = pd.read_csv('./student_score.csv',encoding = 'gbk')#最高分Math_Max = score.高数.max()English_Max = score.英语.max()Python_Max = score.Python.max()#最低分Math_Min = score.高数.min()English_Min.........【阅读全文】

阅读(2324) | 评论(0) | 转发(0)

发布时间:2021-04-13 16:00:28

'''发送邮件'''import tkinterimport smtplibfrom email.mime.text import MIMEText跟单网class SendMail: # 初始化画窗口    def __init__(self):        # 创建窗口对象        windows = tkinter.Tk()        # 设置标题  &n.........【阅读全文】

阅读(1166) | 评论(0) | 转发(0)

发布时间:2021-04-12 17:06:54

#!/usr/bin/python# -*- coding: UTF-8 -*-  import matplotlib.pyplot as pltimport mathshow_animation = Trueclass Dijkstra:    def __init__(self, ox, oy, resolution, robot_radius):        """  &.........【阅读全文】

阅读(1431) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册