码迷,mamicode.com
首页 >  
搜索关键字:parameters    ( 1509个结果
Jenkins Pipline语法
引用自:http://baijiahao.baidu.com/s?id=1582812185263227836&wfr=spider&for=pc 一、多参数选择 pipeline{ agent { label '192.168.0.156' } parameters{ choice(name:'t ...
分类:其他好文   时间:2018-06-11 11:56:54    阅读次数:1042
es6
es6: 1.let and const 2.Arorw functions 3.Default parameters 4.for of loop 5.Spread attributes 6.Maps 7.Sets 8.Static methods 9.getters and Setters let ...
分类:其他好文   时间:2018-06-10 23:06:05    阅读次数:238
内置函数分析之array_fill_keys()
1 PHP_FUNCTION(array_fill_keys) 2 { 3 zval *keys, *val, *entry; 4 5 if (zend_parse_parameters(ZEND_NUM_ARGS(), "az", &keys, &val) == FAILURE) { 6 retu... ...
分类:其他好文   时间:2018-06-09 21:12:53    阅读次数:151
Scala: Types of a higher kind
One of the more powerful features Scala has is the ability to generically abstract across things that take type parameters. This feature is known as H ...
分类:其他好文   时间:2018-06-08 16:40:18    阅读次数:194
Python:装饰器之有参装饰器
from inspect import signature def f(a,b,c=1):pass sig = signature(f) sig.parameters 实现一个对被装饰的函数的参数类型检查的装饰器 from inspect import signature def typeasser... ...
分类:编程语言   时间:2018-06-08 12:15:30    阅读次数:210
Python3.6单例模式报错TypeError: object() takes no parameters的解决方法
前日学习python实现单例模式,我安装环境是python3.6.2,代码如下: [python] view plain copy class Singleton(object): _inst = None def __new__(cls, *args, **kwargs): if not cls. ...
分类:编程语言   时间:2018-06-08 12:09:34    阅读次数:301
Python自定义函数的参数
在Python中自定义的函数可以有三类不同的参数 formal parameters positional arguments Keyword Arguments When a final formal parameter of the form **name is present, it rece ...
分类:编程语言   时间:2018-06-05 18:36:31    阅读次数:199
深度学习:参数(parameters)和超参数(hyperparameters)
1. 参数(parameters) 可以通过学习得到的变量,比如权重和偏置 2. 超参数(hyperparameters) 根据经验进行设定,影响到权重和偏置的大小,比如迭代次数、隐藏层的层数、每层神经元的个数、学习速率等 ...
分类:其他好文   时间:2018-06-05 11:34:17    阅读次数:115
SqueezeNet:AlexNet-level Accuracy with 50x fewer parameters and less than 0.5Mb model size
- Fire modules consisting of a 'squeeze' layer with 1*1 filters feeding an 'expand' layer with 1*1 and 3*3 filters(通過餵食一個包含1*1和3*3濾波器的'擴展'層,激勵包含一個'擠壓' ...
分类:Web程序   时间:2018-06-05 00:48:55    阅读次数:246
EBS 由数据库端找到对应的前台URL地址
SELECT home_url FROM icx_parameters; SELECT profile_option_value FROM fnd_profile_option_values WHERE profile_option_id= (SELECT profile_option_id FRO... ...
分类:数据库   时间:2018-06-03 12:42:13    阅读次数:159
1509条   上一页 1 ... 36 37 38 39 40 ... 151 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!