为您找到相关结果1,107,280个
Oracle开启和关闭的四种模式_Mysql_脚本之家
shutdown [normal|transactional|immediate|abort] normal:表示以正常方式关闭数据库 transactional:表示在当前所有的活动事务被提交完毕之后,关闭数据库 immediate:表示在尽可能短的时间内立即关闭数据库 abort:表示以终止方式来关闭数据库 2.1 normal方式 这种方式称为正常的关闭方式,如果对关闭数据库的时间没有限制,通常...
www.jb51.net/article/1618...htm 2025-1-31
Numpy随机抽样的实现_python_脚本之家
numpy.random.randn(d0, d1, ..., dn) Return a sample (or samples) from the “standard normal” distribution. 【例】根据指定大小产生满足标准正态分布的数组(均值为0,标准差为1)。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
www.jb51.net/article/2768...htm 2025-2-4
标记语言——短语元素_HTML/Xhtml_网页制作_脚本之家
font-style: normal; font-family: Courier, serif; color: purple; } 最后让我们看看元素,完成短语元素的部分. 元素可以用来标记使用者要输入的文字,举例来说,如果我正在解释如何使用刚才指定的accesskey把光标切换到搜索框内,我可能会这样写: To quickly change ...
www.jb51.net/web/6447...html 2025-2-9
TensorFlow基本的常量、变量和运算操作详解_python_脚本之家
a = tf.Variable(2, name="scalar") b = tf.Variable([2, 3], name="vector") c = tf.Variable([[0, 1], [2, 3]], name="matrix") W = tf.Variable(tf.zeros([784,10]), name="weights") Z = tf.Variable(tf.random_normal([784, 10], mean=0, stddev=0.01), name="Z"tf...
www.jb51.net/article/1794...htm 2025-2-1