总结 样本类别分布不均衡处理(处理过拟合和欠拟合问题) 过抽样(上采样):通过增加分类中少数类样本的数量来实现样本均衡 from imblearn.over_sampling import SMOTE 欠抽样(下采样):通过减少分类中多数类样本的数量来实现样本均衡 (可能造成样本数据大量丢失) fr ...
分类:
其他好文 时间:
2020-07-28 00:04:11
阅读次数:
85
场景1:主键在清空表之后不会回到1开始 ALTER TABLE T_GPS_UPLOAD ALTER COLUMN ID RESTART WITH 1 场景2:清空表中的所有内容, TRUNCATE TABLE T_GPS_UPLOAD IMMEDIATE; 场景3:查询分页 select * fr ...
分类:
数据库 时间:
2020-07-22 15:35:07
阅读次数:
83
Introduction An Example : FileReader // read the file to console @Test public void test2(){ FileReader fr = null; try { // step 1 : new the file File ...
分类:
编程语言 时间:
2020-07-12 19:06:13
阅读次数:
61
Introduction This example demonstrates the multicodeword transmission and reception in the uplink. Parameters % Generate configuration for FRC A3-2 fr ...
分类:
其他好文 时间:
2020-07-12 16:51:37
阅读次数:
44
1.DR/BDR 1.1 采用默认的NBMA,同时HUB设备(R1)成为DR,路由完整,路由的下一跳是分支的IP地址,但是由于分支间没有地址映射,所以无法通信 dis fr map-info 1.2 采用广播,自动发现邻居,照样要使得R1成为DR [R4-Serial1/0/0]dis ip rou ...
分类:
其他好文 时间:
2020-07-11 22:42:42
阅读次数:
74
本文(争取做到)Android 最全的底部导航栏实现方法. 现在写了4个主要方法. 还有一些个人感觉不完全切题的方法也会简单介绍一下. 方法一. ViewPager + List<View> + PagerAdapter 先看activity_main.xml [html] view plain c ...
分类:
移动开发 时间:
2020-07-10 15:24:42
阅读次数:
109
# coding: utf-8 import tensorflow as tf import os os.environ["CUDA_VISIBLE_DEVICES"] = "-1" print(tf.__version__) print(tf.test.is_gpu_available()) fr ...
分类:
其他好文 时间:
2020-07-10 10:00:02
阅读次数:
62
相关资料:https://baike.baidu.com/item/lib%E6%96%87%E4%BB%B6/2108657?fr=aladdin 意义 LIB文件中存放的是函数调用的信息,值得一提的是数据库有静态数据库(.lib文件)和动态数据库(.dll文件)。 静态编译 静态编译将导出声明和 ...
分类:
其他好文 时间:
2020-07-10 09:56:30
阅读次数:
64
1. from Arthur Samuel:Field of study that gives computers the ability to learn without being explicitly programmed. 即:不直接针对问题进行编程的情况下,赋予机器学习的能力。 2. fr ...
分类:
其他好文 时间:
2020-07-08 19:52:57
阅读次数:
80
package LeetCode_1008 /** * 1008. Construct Binary Search Tree from Preorder Traversal * https://leetcode.com/problems/construct-binary-search-tree-fr ...
分类:
其他好文 时间:
2020-07-06 23:57:45
阅读次数:
88