pytorch
5c696443 - [DataLoader] Modfity construct_time_validation to argument_validation (#55836)

Commit
3 years ago
[DataLoader] Modfity construct_time_validation to argument_validation (#55836) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/55836 Change construct_time_validation to argument_validation as we should provide users the flexibility to use this decorator over all different functions, which are required with type validation. It can also work as a construct-time validation ```py class ExampleDataPipe(IterDataPipe): argument_validation def __init__(self, dp: IterDataPipe[int]): self.dp = dp ... ``` Notebook is also updated. Test Plan: Imported from OSS Reviewed By: VitalyFedyunin Differential Revision: D27743478 Pulled By: ejguan fbshipit-source-id: 49743152d121028cd7d72d89dc7df5c7c7b94c41
Author
Parents
Loading