本文整理汇总了Python中neuralnilm.RealApplianceSource.lag方法的典型用法代码示例。如果您正苦于以下问题:Python RealApplianceSource.lag方法的具体用法?Python RealApplianceSource.lag怎么用?Python RealApplianceSource.lag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类neuralnilm.RealApplianceSource
的用法示例。
在下文中一共展示了RealApplianceSource.lag方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: exp_g
# 需要导入模块: from neuralnilm import RealApplianceSource [as 别名]
# 或者: from neuralnilm.RealApplianceSource import lag [as 别名]
def exp_g(name):
global source
try:
a = source
except NameError:
source = RealApplianceSource(**source_dict)
source.lag = 5
net_dict_copy = deepcopy(net_dict)
net_dict_copy.update(dict(experiment_name=name, source=source))
net_dict_copy['layers_config'] = [
{
'type': LSTMLayer,
'num_units': 200,
'gradient_steps': GRADIENT_STEPS,
'peepholes': False,
'W_in_to_cell': Normal(std=1.)
},
{
'type': DenseLayer,
'num_units': source.n_outputs,
'nonlinearity': None,
'W': Normal(std=(1/sqrt(200)))
}
]
net = Net(**net_dict_copy)
return net
示例2: exp_b
# 需要导入模块: from neuralnilm import RealApplianceSource [as 别名]
# 或者: from neuralnilm.RealApplianceSource import lag [as 别名]
def exp_b(name):
global source
try:
a = source
except NameError:
source = RealApplianceSource(**source_dict)
source.lag = 5
net_dict_copy = deepcopy(net_dict)
net_dict_copy.update(dict(experiment_name=name, source=source))
net_dict_copy['layers_config'].append(
{
'type': DenseLayer,
'num_units': source.n_outputs,
'nonlinearity': None,
'W': Normal(std=(1/sqrt(100)))
}
)
net = Net(**net_dict_copy)
return net