使用XGBoost实现多分类预测的实践代码 import pandas as pd import numpy as np import xgboost as xgb from sklearn.preprocessing import LabelEncoder from sklearn.model_s ...
分类:
其他好文 时间:
2020-01-15 00:03:53
阅读次数:
187
1.容器技术和容器平台技术 (1)容器技术: (1.1)容器核心知识:是什么、为什么、怎么做(架构、镜像、容器、网络、存储); (1.2)容器进阶知识:multi-host、容器网络、数据管理、日志管理、安全性。 (2)容器平台技术: (2.1)容器编排引擎:docker swarm、kuberne ...
分类:
其他好文 时间:
2020-01-14 12:45:55
阅读次数:
173
根据官网给的https://aspnetboilerplate.com/Pages/Articles/Introduction-With-AspNet-Core-And-Entity-Framework-Core-Part-1/index.html和https://aspnetboilerplate ...
分类:
移动开发 时间:
2020-01-14 11:37:16
阅读次数:
188
[TOC] Form组件 介绍 我们之前在HTML页面中利用form表单向后端提交数据时,都会写一些获取用户输入的标签并且用form标签把它们包起来。 与此同时我们在好多场景下都需要对用户的输入做校验,比如校验用户是否输入,输入的长度和格式等正不正确。如果用户输入的内容有错误就需要在页面上相应的位置 ...
分类:
其他好文 时间:
2020-01-13 23:46:33
阅读次数:
80
在exe里面导出下面两个变量,同时对N卡和A卡都有效,程序默认打开就会使用独显运行。导出的变量名字必须和下面的一致,不能有前置下划线。D3D这些年没琢磨过,理论这个设置D3D也能用。这个方法是系统层显卡驱动在程序执行时检测的一个标记,有这个标记,则用独显运行。 // http://developer ...
分类:
其他好文 时间:
2020-01-12 18:30:29
阅读次数:
216
场景来源:无法给Dubbo接口传参数,List<MultipartFile> files不支持。 解决方法:Base64将文件序列化为String。Dubbo再解析成List。 List<MultipartFile>转成String: public String uploadFj(List<Mult ...
分类:
其他好文 时间:
2020-01-11 14:59:44
阅读次数:
198
一、换源 1、打开source.list 2、加入 #alideb-src http://mirrors.aliyun.com/ubuntu/ xenial maindeb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates maindeb-sr ...
分类:
系统相关 时间:
2020-01-11 13:35:26
阅读次数:
72
RabbitMQ介绍以下内容搬运自RabbitMQ官网RabbitMQ is the most widely deployed open source message broker.RabbitMQ是使用最广泛的开源的消息中转器With tens of thousands of users, Rab... ...
分类:
其他好文 时间:
2020-01-11 11:35:30
阅读次数:
98
COMP222 - 2019 - Second CA AssignmentIndividual courseworkTrain Deep Learning AgentsAssessment InformationAssignment Number 2 (of 2)Weighting 10%Assig ...
分类:
其他好文 时间:
2020-01-10 20:08:41
阅读次数:
89
第一步,安装mysql, # mysql -uroot -p 2.建立远程root用户 mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '你设置的密码' WITH GRANT OPTION; mysql> flush pr ...
分类:
编程语言 时间:
2020-01-09 19:00:41
阅读次数:
91