|
| 1 | +# MIT License |
| 2 | +# |
| 3 | +# Copyright (C) The Adversarial Robustness Toolbox (ART) Authors 2021 |
| 4 | +# |
| 5 | +# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated |
| 6 | +# documentation files (the "Software"), to deal in the Software without restriction, including without limitation the |
| 7 | +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit |
| 8 | +# persons to whom the Software is furnished to do so, subject to the following conditions: |
| 9 | +# |
| 10 | +# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the |
| 11 | +# Software. |
| 12 | +# |
| 13 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| 14 | +# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 15 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, |
| 16 | +# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 17 | +# SOFTWARE. |
| 18 | +""" |
| 19 | +This module implements mixin abstract base class for all object trackers in ART. |
| 20 | +""" |
| 21 | + |
| 22 | +from abc import ABC, abstractmethod |
| 23 | + |
| 24 | +from art.estimators.estimator import BaseEstimator |
| 25 | +from art.estimators.classification.classifier import LossGradientsMixin |
| 26 | + |
| 27 | + |
| 28 | +class ObjectTrackerMixin(ABC): |
| 29 | + """ |
| 30 | + Mix-in Base class for ART object trackers. |
| 31 | + """ |
| 32 | + |
| 33 | + @property |
| 34 | + @abstractmethod |
| 35 | + def native_label_is_pytorch_format(self) -> bool: |
| 36 | + """ |
| 37 | + Are the native labels in PyTorch format [x1, y1, x2, y2]? |
| 38 | + """ |
| 39 | + raise NotImplementedError |
| 40 | + |
| 41 | + |
| 42 | +class ObjectTracker(ObjectTrackerMixin, LossGradientsMixin, BaseEstimator, ABC): |
| 43 | + """ |
| 44 | + Typing variable definition. |
| 45 | + """ |
| 46 | + |
| 47 | + pass |
0 commit comments