import random import string # 生成大于0小于1的数,小数 print(random.random()) # 1-3之间的整数 print(random.randint(1,3)) print( random.choice('tomorrow') ) # 从序列中随机选取 ...
分类:
其他好文 时间:
2021-02-08 12:35:35
阅读次数:
0
模型正则化 Regularization 岭回归实现 import numpy as np import matplotlib.pyplot as plt np.random.seed(42) x = np.random.uniform(-3.0, 3.0, size=100) X = x.resh ...
分类:
其他好文 时间:
2021-02-04 12:23:51
阅读次数:
0
1、容器中的jumpserver的数据在/opt/jumpserver/data目录中,日志在/opt/jumpserver/logs目录中,初始化数据库在/opt/jumpserver/utils目录中,配置文件在/opt/jumpserver/config.yml文件中,启动jumpserver ...
分类:
其他好文 时间:
2021-02-02 11:28:38
阅读次数:
0
数据结构 Series Series是一个类似于一维数组的数据结构,它能够保存任何类型的数据,比如整数、字符串、浮点数等,主要由一组数据和与之相关的索引两部分构成。 Series的创建与应用 指定内容,默认索引 a=pd.Series(np.arange(10)) print(a) 输出: 指定内容 ...
分类:
其他好文 时间:
2021-02-02 11:27:43
阅读次数:
0
介绍下 的主要模块和辅助模块。 Pytorch的主要模块 PyTorch主要包括以下16个模块: 1.torch模块 torch模块本身包含了PyTorch经常使用的一些激活函数,比如Sigmoid(torch.sigmoid)、ReLU(torch.relu)和Tanh(torch.tanh),以 ...
分类:
其他好文 时间:
2021-02-02 11:01:33
阅读次数:
0
tensorflow.keras与keras:TypeError: objectof type 'xxx' has no len() Module 'gast' has no attribute 'Num' K.batch_dot 的版本变化 random_order = list(range(le ...
分类:
其他好文 时间:
2021-02-01 12:57:07
阅读次数:
0
Think in Java 第四章 控制执行流程 测试while public class whileTest { static boolean condition(){ boolean result = Math.random() < 0.99; System.out.println(result ...
分类:
编程语言 时间:
2021-01-28 11:58:06
阅读次数:
0
Motivation 明显,类层次分析没法很好完成invokeinterface的分析。 Intro 作用: 确定某个指针能够指向何处memory 对oop能够确定指针指向的具体是哪个class的方法,field等 一般是may analysis Pointer Analysis & Alias A ...
分类:
数据库 时间:
2021-01-26 12:06:31
阅读次数:
0
import tensorflow as tf import numpy as np ##使用numpy生成100个随机点 x_data=np.random.rand(200) y_data=x_data*0.1+0.2 #构造一个线性模型 b=tf.Variable(0.) k=tf.Variab ...
分类:
编程语言 时间:
2021-01-26 11:55:41
阅读次数:
0
随机生成MAC //MAC地址分隔符 private static String SEPARATOR_OF_MAC = "-"; Random random = new Random(); //mac数据 String[] macs = { String.format("%02x", 0x52), ...
分类:
系统相关 时间:
2021-01-22 11:50:15
阅读次数:
0