相关文章
c++ 学习之 构造函数的使用
上代码
class person
{
public:person(){cout << " person 的无参默认构造函数 " << endl;}person(int age){cout << " person 的有参默认构造函数 " << endl;m_age age;}person(const person& other){cout << "…
编程日记
2024/12/23 7:41:41
springboot整合SpringSecurity
先写了一个配置类
给这个访问路径,加上角色权限
package com.qf.config;import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
impo…
编程日记
2024/12/23 3:16:00
PHP数组处理$arr1转换为$arr2
请编写一段程序将$arr1转换为$arr2
$arr1 array(
0>array (fid>1,tid>1,name>Name1),
1>array (fid>2,tid>2,name>Name2),
2>array (fid>3,tid>5,name>Name3),
3>array (fid>4,tid>7,name>Name4),
4>array (fid>5,tid…
编程日记
2024/12/23 7:57:24
docker安装gitlab
安装gitlab
sudo docker run --detach \--hostname gitlab \--publish 543:443 --publish 90:80 --publish 222:22 \ --name gitlab \--restart always \--volume $GITLAB_HOME/config:/etc/gitlab \--volume $GITLAB_HOME/logs:/var/log/gitlab \--volume $GITLAB_HOME/data:…
编程日记
2024/12/19 6:01:48
ELK安装、部署、调试 (二) ES的安装部署
ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口操作ES,也可以利用Java API。Elasticsearch是用Java开发的,并作为Apache许可条款下的开放源码发布,是当前流行的企业…
编程日记
2024/12/15 17:33:37
importance中信息增益和基尼系数
1.信息增益和基尼系数的异同点
信息增益和基尼系数都是用于评价决策树分裂节点的指标,它们有以下主要的相同点和不同点:
相同点:
都用于测度数据集的无序程度(impurity),可以评价分裂后的无序程度减少量取值范围都在0到1之间,0表示完全有序都遵循同一思路,优先选择造成无序程…
编程日记
2024/12/19 9:19:21