本文简要介绍python语言中 torch.distributions.constraint_registry.ConstraintRegistry.register
的用法。
用法:
register(constraint, factory=None)
constraint(子类
Constraint
) -Constraint
的子类,或所需类的单例对象。factory(可调用的) -输入约束对象并返回
Transform
对象的可调用对象。
在此注册表中注册
Constraint
子类。用法:@my_registry.register(MyConstraintClass) def construct_transform(constraint): assert isinstance(constraint, MyConstraint) return MyTransform(constraint.arg_constraints)
参数:
相关用法
- Python PyTorch ConstantPad2d用法及代码示例
- Python PyTorch ConstantLR用法及代码示例
- Python PyTorch ConstantPad1d用法及代码示例
- Python PyTorch ConstantPad3d用法及代码示例
- Python PyTorch ConvTranspose3d用法及代码示例
- Python PyTorch Conv1d用法及代码示例
- Python PyTorch ContinuousBernoulli用法及代码示例
- Python PyTorch ConvTranspose2d用法及代码示例
- Python PyTorch Concater用法及代码示例
- Python PyTorch Conv2d用法及代码示例
- Python PyTorch Conv3d用法及代码示例
- Python PyTorch Collator用法及代码示例
- Python PyTorch CosineAnnealingWarmRestarts.step用法及代码示例
- Python PyTorch CocoCaptions用法及代码示例
- Python PyTorch ComplexNorm用法及代码示例
- Python PyTorch Compose用法及代码示例
- Python PyTorch CosineSimilarity用法及代码示例
- Python PyTorch CSVParser用法及代码示例
- Python PyTorch CrossEntropyLoss用法及代码示例
- Python PyTorch ChannelShuffle用法及代码示例
- Python PyTorch CSVDictParser用法及代码示例
- Python PyTorch Cityscapes用法及代码示例
- Python PyTorch ChainedScheduler用法及代码示例
- Python PyTorch Cauchy用法及代码示例
- Python PyTorch CriteoIterDataPipe用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.distributions.constraint_registry.ConstraintRegistry.register。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。