码迷,mamicode.com
首页 >  
搜索关键字:features    ( 1570个结果
Eclipse中配置python开发环境详解
Eclipse中配置python开发环境详解 1、下载python 安装包.python-2.6.6.msi.并安装。默认python会安装在C:\Python26下,查看环境变量,如果没有在path路径中写入则手动添加。打开一个dos窗口,验证python是否安装成功: C:\Documents ...
分类:编程语言   时间:2020-03-22 23:54:59    阅读次数:119
集成学习与随机森林(三)随机森林与随机子空间
随机森林与随机子空间 BaggingClassifier类也支持对特征采样,这种采样由两个超参数控制:max_features 与 bootstrap_features,他们的工作方式与max_samples 与 bootstrap一样,只是他们采样的是特征。这样,每个模型将会在一个随机的输入特征子 ...
分类:其他好文   时间:2020-03-20 22:01:46    阅读次数:107
Spring Boot中实现logback多环境日志配置
参考: https://www.cnblogs.com/EasonJim/p/7801549.html https://docs.spring.io/spring-boot/docs/1.5.7.RELEASE/reference/htmlsingle/#boot-features-custom-l ...
分类:编程语言   时间:2020-03-20 13:13:42    阅读次数:85
css modules的一些实践
本人使用vue引入css modules做实践。vue文档查看:https://vue-loader-v14.vuejs.org/zh-cn/features/css-modules.html 以及 https://vue-loader.vuejs.org/zh/guide/css-modules. ...
分类:Web程序   时间:2020-03-18 21:38:49    阅读次数:97
GhostNet: More Features from Cheap Operations - 1 - 论文学习
GhostNet: More Features from Cheap Operations 1. Introduction 在训练有素的深度神经网络的特征图中,丰富甚至冗余的信息常常保证了对输入数据的全面理解。例如,图1展示了由ResNet-50生成的输入图像的一些特征映射,并且存在许多相似的特征映 ...
分类:Web程序   时间:2020-03-17 19:41:23    阅读次数:84
ArcGIS Pro注记操作 https://github.com/esri/arcgis-pro-sdk/wiki/ProConcepts-Editing-Annotation#creating-annotation-features
ProConcepts Editing Annotation Jump to bottom uma2526 edited this page on 6 Feb · 8 revisions This concepts document covers special considerations for ...
分类:Web程序   时间:2020-03-14 00:44:55    阅读次数:76
Vue style 深度作用选择器 >>> 与 /deep/(sass/less)
传送门:https://vue-loader-v14.vuejs.org/zh-cn/features/scoped-css.html 你很可能会遇到的问题 vue组件编译后,会将 template 中的每个元素加入 [data-v-xxxx] 属性来确保 style scoped 仅本组件的元素而 ...
分类:其他好文   时间:2020-03-12 21:59:02    阅读次数:88
Exploiting Edge Features in Graph Neural Networks
介绍 现如今图神经网络取得了很大进展,最典型的两个模型是GCN模型和GAT模型,然而现有的图神经模型仍然存在以下两个问题: 1. 边特征未被有效考虑。比如GAT只考虑两个节点之间是否有边(binary indicator),GCN的边特征只能是一个实数(one dimensional real va ...
分类:Web程序   时间:2020-03-11 10:22:31    阅读次数:106
ctfhub技能树—信息泄露—PHPINFO
打开靶机 查看页面,是PHP info界面 只有这一个页面,查找一下有没有flag 拿到flag 浅谈ctf中phpinfo需要关注的点(转自先知社区) 1 https://xz.aliyun.com/t/6131 首先我们先谈谈 php各个版本的的差异 php5.2以前 __autoload()加 ...
分类:Web程序   时间:2020-03-05 15:08:27    阅读次数:644
基于sklearn 实现决策树(含最简代码,复杂源码:预测带不带眼镜)
最简代码: 1 #简单的决策树分类 2 from sklearn import tree 3 features = [[300,2],[450,2],[200,8],[150,9]] 4 labels = ['apple','apple','orange','orange'] 5 clf = tre ...
分类:其他好文   时间:2020-03-03 19:11:49    阅读次数:84
1570条   上一页 1 ... 9 10 11 12 13 ... 157 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!