1. sklearn中的Pipeline机制 管道机制在机器学习算法中的应用:参数集在新数据集(比如测试集)上的重复使用。 管道机制实现流式化封装和管理。 主要有两点好处: 可直接调用fit和predict方法对pipeline中的所有算法模型进行训练和预测 可结合grid search对参数进行选 ...
分类:
其他好文 时间:
2020-07-23 16:15:38
阅读次数:
78
接了个需求,需要键盘支持单元格内的多个输入框切换焦点。 说实话,刚开始看觉得挺麻烦的,毕竟涉及到底层按键监听,看了遍代码,发现按键实现是 ag-grid 自带的,一下子省了好多事,但又有了新的问题,ag-grid 的键盘的只能切换单元格,不会进到单元格的内部去。 方向键、tab、shift+tab ...
分类:
其他好文 时间:
2020-07-16 12:20:30
阅读次数:
82
经典dp问题 class Solution { public int maxValue(int[][] grid) { int m=grid.length,n=grid[0].length; for(int i=0;i<m;i++){ for(int j=0;j<n;j++){ if(i==0&&j ...
分类:
其他好文 时间:
2020-07-15 15:48:57
阅读次数:
52
一、echarts配置项如下: var option = { animation: true, title: {}, tooltip: { showDelay: 0, }, xAxis: { type: 'value', }, grid: { top: '20%', bottom: '20%' }, ...
分类:
其他好文 时间:
2020-07-15 15:18:27
阅读次数:
116
Unique Paths II (M) 题目 A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either ...
分类:
其他好文 时间:
2020-07-14 09:17:23
阅读次数:
72
##使用方法 用css中的display:none方法; 用chrome浏览器,右键审查,获得css路径,在按右键,审查,copy-selector; 使用stylish等插件; ###虎扑css .hp-threeNav, body > div.hp-header.hp-header-A, #ta ...
分类:
Web程序 时间:
2020-07-11 17:39:56
阅读次数:
104
1.grid布局实现(一) .father{ display:grid; align-item:center; justify-items:center; } 2.grid布局实现(二) .father{ display:grid; align-item:center; justify-conten ...
分类:
Web程序 时间:
2020-07-10 13:11:05
阅读次数:
90
dfs找到解,return true, 不需要继续找了,不然回溯将恢复整个棋盘。 或者, 记录下该解,继续找下一个解(如果存在多解, 但一般不需要)。 import java.util.*; public class Main { static int[][] grid; static boolea ...
分类:
其他好文 时间:
2020-07-09 12:27:26
阅读次数:
52
You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/ve ...
分类:
其他好文 时间:
2020-07-08 09:14:32
阅读次数:
54
第一种写法: wxml: <view class="page_first"> <view class="page_li" wx:for="{{4}}"></view> </view> wxss: .page_first{padding: 30rpx;box-sizing: border-box;di ...
分类:
其他好文 时间:
2020-07-07 15:44:41
阅读次数:
58