自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 收藏
  • 关注

原创 线性模型应用实践-波士顿、鸢尾花

实验一:线性模型应用实践如果以下图片失效可以尝试运行代码,图片会加载出来了,代码是完整的,因为当初交报告是也是用markdown写的转载上来就不行了一、实验目的1.了解线性模型的相关概念;2.理解并掌握线性回归算法原理;3.理解并掌握对数几率回归算法原理;4.进一步熟悉Pandas对文件操作;5.初步掌握线性模型中线性回归和对数几率回归在生活中的应用;二、 实验内容1、运用线性回归算法给出波士顿房价预测。2、运用对数几率回归给出鸢尾花类分类,要求其精度为0.90以上。三、 实现过程分

2021-09-30 10:54:17 829

原创 朴素贝叶斯模型应用实践

实验四:朴素贝叶斯模型应用实践一、实验目的1.了解贝叶斯原理;2.理解朴素贝叶斯算法原理;3.掌握朴素贝叶斯工作流程4.初步应用朴素贝叶斯分类器在分类中应用;二、 实验内容(以下实验二选一)11、文档分类给定4种中文文档类型:女性、体育、文学、校园,其中训练集放在train文件夹里,测试数据放在test文件夹里,停用词放在stop文件夹里。​ [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-pZaF04vS-1632969

2021-09-30 10:42:53 617

原创 线性表-链表啊

Comprehensive experiment 1:Application of linear listOne. Experimental target1、Use the basic operations to implement the specific operations for the linear table;2、Master the application of file operations;3、Improve the understanding of the data struct

2021-09-30 10:37:52 153

原创 八大排序-所有的排序这里都有

Sort comprehensive ReportDate:2019年11月30日One. Experimental purposeFamiliar with the basic operations of the sort.Master the operation of various internal sorting.Deepen the understanding of the sort, and to develop the programming ability of sol

2021-09-30 10:36:02 109

原创 计算器-结构体版本

Tree Comprehensive ExperimentExperiment Date:2019年11月30日One. Experimental purpose1、Do linear list operations by using basic operations of tree or binary tree.2、Handle file operations.3、Deep the understanding of tree and binary tree, gradually develop

2021-09-30 10:34:24 223

原创 图-跨市路径

Graph comprehensive experimentExperiment Date:2019年12月20日One. Experiment purposeFamiliar with the basic operation of the graph.Master the storage and travel operation of the graph.Deepen the understanding of the graph algorithms, and to develop

2021-09-30 10:32:02 255

原创 python的pip升级2秒搞定

Traceback (most recent call last):File “F:\Anaconda__\lib\site-packages\pip_vendor\urllib3\response.py”, line 302, in error_catcheryieldFile "F:\Anaconda_\lib\site-packages\pip_vendor\urllib3\respo...

2020-01-19 23:30:59 513

原创 线性与顺序的解释

线性:一种逻辑结构 并不是一定是物理储存、只要符合逻辑结构常见线性结构:线性表、堆栈、队列、双队列、数组、串非线性结构:二维数组、多维数组、广义表、树、图注意:堆是顺序储存,一维数组。顺序、链式:存储结构解释:线性是指一个元素后继只有唯一的一个元素或节点,非线性是一个元素后面可以有多个后继或前继节点,顺序是指存储结构连续,例如数组是顺序的,链表不是顺序的,但他们都是线性的。当然顺序也可...

2019-11-20 19:31:23 1446

原创 sublime

sunlime上弹出黑框的方法`{"cmd": ["g++", "${file}", "-o","${file_path}/${file_base_name}"],"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:?(.*)$","working_dir": "${file_path}","encoding":"cp936","selector...

2019-09-11 21:59:08 85

原创 sublime中文包--别信什么中文包--根本不需要

打开preferences点击用户管理在代码的最前面大喊一句“氤氲之息”啊呸"dpi_scale": 1.0,这个就可以了,然后关闭再打开,你就能看到氤氲之息了。

2019-08-20 13:38:50 147

原创 html中鼠标指向块显示不同的字或者图片或者背景

js部分html 部分 校园动态

2019-08-14 19:01:23 814

转载 字体移动

一、从右向左移代码需要移动的文字二、从左向右移代码需要移动的文字三、一圈一圈绕着移动代码需要移动的文字四、只移动三次就停了代码需要移动的文字五、移一步,停一停代码需要移动的文字六、左右来回移动代码需要移动的文字七、忽隐忽现移动代码需要移动的文字八、从下向上移动代码需要移动的文字九 、从上向下移动代码需要移动的文字十、垂直往复移动代码需要移...

2019-08-14 09:57:19 221

原创 图-结构图-爱看不看

#include<bits/stdc++.h>using namespace std;#define T 20int visit[100]= {0};class Graph {public:char vexs[T];int matrix[T][T];};int location(Graph&a,char key) {for(int i=0; i<T; ...

2019-08-07 20:19:04 94

原创 OpenCV cvtColor CV_BGR2GRAY

灰度图像表示为引用库使用头文件#include <opencv2\imgproc\types_c.h>

2019-08-01 19:42:37 1461

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除