本文简要介绍python语言中 torch.fx.Graph.inserting_after
的用法。
用法:
inserting_after(n=None)
- 设置create_node 和伴随方法将插入图表的点。
在‘with’ 语句中使用时,这将临时设置插入点,然后在 with 语句退出时恢复它:
with g.inserting_after(n): ... # inserting after node n ... # insert point restored to what it was previously g.inserting_after(n) # set the insert point permanently
- 参数:
- n(可选[节点]):要在其之前插入的节点。如果没有,这将插入之后
整个图形的开始。
- 返回:
将恢复
__exit__
上的插入点的资源管理器。
注意
保证此 API 的向后兼容性。
相关用法
- Python PyTorch Graph.inserting_before用法及代码示例
- Python PyTorch Graph.eliminate_dead_code用法及代码示例
- Python PyTorch Graph.node_copy用法及代码示例
- Python PyTorch Graph用法及代码示例
- Python PyTorch GradScaler.unscale_用法及代码示例
- Python PyTorch GroupedPositionWeightedModule.named_parameters用法及代码示例
- Python PyTorch GroupedPooledEmbeddingsLookup.named_buffers用法及代码示例
- Python PyTorch GroupNorm用法及代码示例
- Python PyTorch GroupedPositionWeightedModule.named_buffers用法及代码示例
- Python PyTorch GroupedPooledEmbeddingsLookup.state_dict用法及代码示例
- Python PyTorch GriffinLim用法及代码示例
- Python PyTorch GroupedPooledEmbeddingsLookup.named_parameters用法及代码示例
- Python PyTorch GroupedPositionWeightedModule.state_dict用法及代码示例
- Python PyTorch GreedyPerfPartitioner.partition用法及代码示例
- Python PyTorch GroupedEmbeddingsLookup.state_dict用法及代码示例
- Python PyTorch GroupedEmbeddingsLookup.named_parameters用法及代码示例
- Python PyTorch GroupedEmbeddingsLookup.named_buffers用法及代码示例
- Python PyTorch Grouper用法及代码示例
- Python PyTorch Generator.set_state用法及代码示例
- Python PyTorch Generator.seed用法及代码示例
- Python PyTorch GLU用法及代码示例
- Python PyTorch GDriveReader用法及代码示例
- Python PyTorch GRUCell用法及代码示例
- Python PyTorch Gumbel用法及代码示例
- Python PyTorch Generator.get_state用法及代码示例
注:本文由纯净天空筛选整理自pytorch.org大神的英文原创作品 torch.fx.Graph.inserting_after。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。