其他问题 1. 模型选择、欠拟合和过拟合 1.1 训练误差和泛化误差 1.2 模型选择 1.2.1 验证数据集 1.2.2 $K$ 折交叉验证 由于验证数据集不参与模型训练,当训练数据不够用时,预留大量的验证数据显得太奢侈。一种改善的方法是$K$折交叉验证($K$ fold cross valida ...
分类:
其他好文 时间:
2020-02-06 23:24:59
阅读次数:
101
Exporter.cpp文件中:导出shadowDepthMap: void FLightmassSolverExporter::ExportStaticShadowDepthMap(const FGuid& LightGuid, const FStaticShadowDepthMap& Stati ...
分类:
Web程序 时间:
2020-02-05 20:40:37
阅读次数:
144
01 索引类型 索引类型分为 NORMAL:这是最基本的索引,它没有任何限制,默认的BTREE类型的索引,是我们大多数情况下用到的索引。 UNIQUE:表示唯一的,不允许重复的索引,如果该字段信息保证不会重复。例如身份证号用作索引时,可设置为unique。Unique(要求列唯一)和Primary ...
分类:
数据库 时间:
2020-02-02 15:32:21
阅读次数:
112
numpy.random.randn(d0,d1,…,dn) numpy.random.randn(d0,d1,…,dn) 返回一个或一组符合“标准正态分布“的样本。dn表格每个维度,返回值为指定维度的array。 标准正态分布—-standard normal distribution 标准正态分 ...
分类:
其他好文 时间:
2020-02-01 21:18:00
阅读次数:
79
分析: 完整代码: // 最长公共子序列 #include <stdio.h> #include <algorithm> using namespace std; const int N = 100; char A[N], B[N]; int dp[N][N]; int main() { freop ...
分类:
其他好文 时间:
2020-02-01 14:15:10
阅读次数:
61
Create a GPO to disable Task Manager Access to normal users. Add an exception to Domain Admins. ...
分类:
数据库 时间:
2020-01-31 22:27:28
阅读次数:
89
import os os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' import tensorflow as tf def linearregression(): X = tf.random_normal([100,1],mean=0.0,stddev=1.0) y ...
分类:
其他好文 时间:
2020-01-31 19:04:29
阅读次数:
75
普通索引创建 创建普通索引,即不添加 UNIQUE、FULLTEXT 等任何参数。 【例】创建表名为 score 的数据表,并在该表的 id 字段上建立索引,SQL 语句如下: 此时在id字段上建立的普通索引名字为id,在id字段建立的,索引方法为BTREE,索引类型为normal 创建唯一索引 创 ...
分类:
数据库 时间:
2020-01-30 19:20:07
阅读次数:
360
# ubuntu下 redis的安装使用 - ## 安装 ### 1. 进入redis安装路径 ` cd ~/installed/redis-5.0.7 ` ### 2. 启动redis ` redis-server ` ...
分类:
系统相关 时间:
2020-01-30 12:36:01
阅读次数:
156
PROBLEM: anomaly detection input: multivariate time series to RNN > capture the normal patterns > reconstruct input data by the representations > use ...
分类:
Web程序 时间:
2020-01-30 10:02:25
阅读次数:
143