当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python PyTorch ObserverBase.with_callable_args用法及代码示例


本文简要介绍python语言中 torch.quantization.ObserverBase.with_callable_args 的用法。

用法:

classmethod with_callable_args(**kwargs)

允许创建需要在构造时调用的类工厂参数的包装器。

当需要创建具有相同构造函数参数的类时,这可能很有用,但不同的实例和这些参数只能在构造时计算。可与_with_args结合使用

例子:

>>> Foo.with_callable_args = classmethod(_with_callable_args)
>>> Foo.with_args = classmethod(_with_args)
>>> foo_builder = Foo.with_callable_args(cur_time=get_time_func).with_args(name="dan")
>>> foo_instance1 = foo_builder()
>>> wait 50
>>> foo_instance2 = foo_builder()
>>> id(foo_instance1.creation_time) == id(foo_instance2.creation_time)
False

相关用法


注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.quantization.ObserverBase.with_callable_args。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。