码迷,mamicode.com
首页 >  
搜索关键字:ica    ( 9308个结果
display:inline-block两端对齐 实现列表
做一个ul li 列表类似这样的平时经常会用到 要是用浮动做还是比较简单的直接左右浮动,清除浮动就可以搞定了,因为最近用display:inline-block用的比较顺手,所以就尝试一下。通过text-align:left,text-align:right,可以控制元素靠左还是靠右,这种方法只能做 ...
分类:其他好文   时间:2020-01-19 22:13:25    阅读次数:90
leetcode1324
1 class Solution: 2 def printVertically(self, s: str) -> 'List[str]': 3 words = s.split(' ') 4 matrix = [] 5 maxlen = 0 6 for w in words: 7 maxlen = m ...
分类:其他好文   时间:2020-01-19 22:11:50    阅读次数:159
[cvpr17]Multi-View 3D Object Detection Network for Autonomous Driving
3D点云做detection的一篇milestone paper。经典的two-stage方法(region proposal-based method)。思路来自于经典的faster rcnn。 整个模型如下图 图一. 整体模型 3D Point Cloud Representation 这篇文章 ...
分类:Web程序   时间:2020-01-19 12:57:44    阅读次数:185
elementui Tree 树形控件
数据表结构: 后端代码: @RequestMapping(value = "/list", method = RequestMethod.POST) public Result findCategory(){ List<Category> list = categoryService.findCat ...
分类:其他好文   时间:2020-01-19 09:39:48    阅读次数:133
Spark VectorSlice 向量切片
1、概念 VectorSlicer是一种转换器,它接受特征向量并输出带有原始特征子数组的新特征向量。这对于从向量列中提取特征很有用。 VectorSlicer接受具有指定索引的向量列,然后输出一个新的向量列,其值通过这些索引选择。索引有两种类型, 整数索引,代表向量setIndices()的索引。 ...
分类:其他好文   时间:2020-01-18 16:23:28    阅读次数:101
SpringBoot实现WebSocket单聊
一、创建项目并导入依赖 org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boo... ...
分类:编程语言   时间:2020-01-18 14:54:19    阅读次数:97
.NET CORE(C#) WPF 抽屉式菜单
原文:.NET CORE(C#) WPF 抽屉式菜单 微信公众号:Dotnet9,网站:Dotnet9,问题或建议:请网站留言, 如果对您有所帮助:欢迎赞赏。 .NET CORE(C#) WPF 抽屉式菜单 阅读导航 本文背景 代码实现 本文参考 源码 1. 本文背景 使用简单动画实现抽屉式菜单 2... ...
分类:Windows程序   时间:2020-01-18 12:54:31    阅读次数:121
[转帖]IPv6基础知识,一分钟了解下
IPv6基础知识,一分钟了解下 https://network.51cto.com/art/201912/608265.htm 一、IPv6简介 1、IPv6 早期被称为 IPng (next generation)目前是 IP 协议的最新版本 IP 协议是一种网络层协议,采用 IP协议构建的数据通 ...
分类:其他好文   时间:2020-01-18 11:03:27    阅读次数:78
c#实现从txt文本里读取大量数据到Datetable再绑定到datagirdview,再导出到excel
客户有一个需求是把扫描和称重的数据写入到txt文本里面 然后导出显示到界面,最后导出到Excel。 就是这个流程。 从txt导出到datetable中。。。还是直接上代码吧 /// <summary> /// txt导出到datatable /// </summary> /// <param nam ...
分类:Windows程序   时间:2020-01-18 11:00:00    阅读次数:87
training set, validation set, test set的区别
training set: 用来训练模型 validation set : 用来做model selection test set : 用来评估所选出来的model的实际性能 我们知道,在做模型训练之前,我们必须选择所训练的模型的形式:线性模型(y = wx+b)或者非线性模型(SVM,decisi ...
分类:其他好文   时间:2020-01-18 10:49:16    阅读次数:97
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!