一.smote相关理论 (1). SMOTE是一种对普通过采样(oversampling)的一个改良。普通的过采样会使得训练集中有很多重复的样本。 SMOTE的全称是Synthetic Minority Over-Sampling Technique,译为“人工少数类过采样法”。 SMOTE没有直接 ...
分类:
其他好文 时间:
2019-07-24 22:56:11
阅读次数:
243
神仙题?反正我是完全想不到哇QAQ ~~这场AGC真的很难咧$\times 10086$~~ $\bf Description$ 一张 $n$ 个点的图,$i$ 到 $i+1$ 有连边。 现在来了个Snuke,他会给所有 $(i,j) ,i \ne j$ 连边,如果 $ij)$ 的边,必须满足 $p ...
分类:
其他好文 时间:
2019-07-24 10:21:51
阅读次数:
105
持续更新。 code: cpp include include include include include include ifndef positive define positive 0 endif ifndef negative define negative 1 endif using ...
分类:
其他好文 时间:
2019-07-23 22:36:44
阅读次数:
127
可视化音频信号 - 从文件读取并进行处理 import numpy as np import matplotlib.pyplot as plt from scipy.io import wavfile frequency_sampling, audio_signal = wavfile.read("... ...
分类:
其他好文 时间:
2019-07-23 10:07:17
阅读次数:
131
Given a non-negative integer numRows, generate the first numRows of Pascal's triangle. In Pascal's triangle, each number is the sum of the two numbers ...
分类:
其他好文 时间:
2019-07-14 23:51:04
阅读次数:
162
公众号:爱写bug(ID:icodebugs) 给定一个数组,将数组中的元素向右移动 k 个位置,其中 k 是非负数。 Given an array, rotate the array to the right by k steps, where k is non negative. 示例 1: 示 ...
分类:
编程语言 时间:
2019-07-09 13:51:39
阅读次数:
92
https://leetcode.com/problems/add-two-numbers/ Medium Medium Medium You are given two non-empty linked lists representing two non-negative integers. T ...
分类:
其他好文 时间:
2019-07-08 22:24:14
阅读次数:
127
Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n. Example: Input: 2 Output: 91 Explanation: The answer shoul ...
分类:
其他好文 时间:
2019-07-05 19:24:57
阅读次数:
90
考虑一个二分类的情况,类别为1和0,我们将1和0分别作为正类(positive)和负类(negative),则实际分类的结果有4种,表格如下(混淆矩阵): 真实情况 预测结果 正例 反例 正例 TP(真正例) FN(假反例) 反例 FP(假正例) TN(真反例) 敏感性Sensitivity (Se ...
分类:
其他好文 时间:
2019-06-29 22:21:01
阅读次数:
475
题目描述 Given an integer n, count the total number of digit 1 appearing in all non-negative integers less than or equal to n. 题目大意 计算[0, n]之间的数字中包含多少1 。 ...
分类:
其他好文 时间:
2019-06-27 20:38:30
阅读次数:
152