码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
sql server 生成随机数 rand函数
https://docs.microsoft.com/en-us/sql/t-sql/functions/rand-transact-sql?view=sql-server-2017 在某一个区间内生成随机数 https://stackoverflow.com/questions/7878287/g ...
分类:数据库   时间:2018-06-05 11:33:55    阅读次数:296
php引擎文件php.ini优化参数
# vim /application/php/lib/php.ini (1) PHP函数禁用找到: disable_functions = 该选项可以设置哪些PHP函数是禁止使用的,PHP中有一些函数的风险性还是相当大的,可以直接执行一些系统级脚本命令,如果允许这些函数执行,当PHP程序出现漏洞时, ...
分类:Web程序   时间:2018-06-02 20:03:07    阅读次数:229
11 函数-调用函数
Python内置了很多有用的函数,我们可以直接调用。 要调用一个函数,需要知道函数的名称和参数,比如求绝对值的函数abs,只有一个参数。可以直接从Python的官方网站查看文档: http://docs.python.org/3/library/functions.html#abs 也可以在交互式命 ...
分类:其他好文   时间:2018-05-27 16:20:32    阅读次数:161
CS294-112 深度强化学习 秋季学期(伯克利)NO.6 Value functions introduction NO.7 Advanced Q learning
understand that correlated samples cause problem. and how paralled solve the problem another solution is replay buffers, fully ultilizing the advantag ...
分类:其他好文   时间:2018-05-26 21:26:50    阅读次数:242
如何查看 Python 全部内置变量和内置函数?
https://jingyan.baidu.com/article/7082dc1c071649e40a89bdb8.html Python 解释器内置了一些常量和函数,叫做内置常量(Built-in Constants)和内置函数(Built-in Functions),我们怎么在 Python ...
分类:编程语言   时间:2018-05-23 02:15:38    阅读次数:237
POJ 1080( LCS变形)
题目链接: http://poj.org/problem?id=1080 Human Gene Functions Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 20430 Accepted: 11396 Description ...
分类:其他好文   时间:2018-05-21 16:13:17    阅读次数:183
用python实现九九乘法表
每天进步一点点学到了print竟然还有end功能。i=0while(i<10):j=1print()while(j<=i):print(str(i)+"x"+str(j)+"=",i*j,end="\t")j+=1i+=1https://docs.python.org/3.3/library/functions.html#pr
分类:编程语言   时间:2018-05-20 22:19:31    阅读次数:222
Python3学习(一)
基本语法 python3不向下兼容,有些语法跟python2.x不一样,IDLE shell编辑器,快捷键:ALT+p,上一个历史输入内容,ALT+n 下一个历史输入内容。#idle中按F5可以运行代码 BIF --> built in functions 查询python有多少BIF内置函数的方法 ...
分类:编程语言   时间:2018-05-20 18:17:10    阅读次数:175
Lagrange Dual Theory for NLP
1. Classic form of nonlinear programming F1: $f,h,g$ are arbitrary (not necessarily diferentiable or continuous) functions. F2: F3: $$\begin{align } & ...
分类:其他好文   时间:2018-05-19 16:57:03    阅读次数:230
TensorFlow-谷歌深度学习库 图片处理模块
Module: tf.image 这篇文章主要介绍TensorFlow处理图片这一块,这个模块和之前说过的文件I/O处理一样也是主要从python导过来的。 通过官方文档,我们了解到这个模块主要有一下这些个函数。 Functions adjust_brightness(...): Adjust th ...
分类:其他好文   时间:2018-05-17 11:56:36    阅读次数:611
1849条   上一页 1 ... 42 43 44 45 46 ... 185 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!