From f3a1f51b5601111fe3f39fb7362e4c15a6189a1b Mon Sep 17 00:00:00 2001 From: Vasilis Vryniotis Date: Wed, 20 Apr 2022 15:50:24 +0100 Subject: [PATCH] Adding note on the meta-data policy --- torchvision/models/_api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/torchvision/models/_api.py b/torchvision/models/_api.py index e47eaf73aab..c250f622e90 100644 --- a/torchvision/models/_api.py +++ b/torchvision/models/_api.py @@ -28,7 +28,9 @@ class Weights: meta (Dict[str, Any]): Stores meta-data related to the weights of the model and its configuration. These can be informative attributes (for example the number of parameters/flops, recipe link/methods used in training etc), configuration parameters (for example the `num_classes`) needed to construct the model or important - meta-data (for example the `classes` of a classification model) needed to use the model. + meta-data (for example the `classes` of a classification model) needed to use the model. These meta-data + are considered part of the documentation and as a result there are no BC guarnatees (fields can be added, + removed and modified on future releases). """ url: str