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
单层的感知机结构可写成以下公式: y=XW+b(y = Σxi*wi+b) 这里单层感知机的激活函数改成使用现代化的sigmoid激活函数 # 定义网络结构 x=tf.random.normal([1,3]) w=tf.ones([3,1]) b=tf.ones([1]) y = tf.consta ...
分类:
其他好文 时间:
2020-01-29 01:04:28
阅读次数:
100
pwd:显示当前目录 date:显示当前日期 cal:显示日历 ls:列出目录内容 cd:改变当前工作目录 ‘.’:代表工作目录 ‘..’:代表工作目录父目录 进入当前目录的父目录:cd /home 和 cd .. 进入当前目录的子目录:cd jeremy 和 cd ./jeremy 1.创建一个目 ...
分类:
系统相关 时间:
2020-01-28 23:17:04
阅读次数:
127
SuperSocket1.6Code解析 Normal Socket System.Net.Sockets.dll程序集中使用socket类: 服务器: 1. 创建socket : 2. 创建IP : 3. 绑定IP地址: //绑定端口 4. 服务开启监听: //开启监听,backlog是监听的最大 ...
分类:
其他好文 时间:
2020-01-28 10:54:37
阅读次数:
103