From 51f2816acf7139a57cc2fb3e940f410ef7459969 Mon Sep 17 00:00:00 2001 From: amogh7joshi Date: Wed, 24 Nov 2021 18:38:25 -0500 Subject: [PATCH 1/2] Version 0.1, reset and reload --- agml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agml/__init__.py b/agml/__init__.py index c4cdedc9..9e33c028 100644 --- a/agml/__init__.py +++ b/agml/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2' +__version__ = '0.1.0' __all__ = ['data', 'backend', 'viz'] # If AgML is being imported for the first time, then we need to setup From b4646fc7a31410601ffe231ad40019ea5d630f87 Mon Sep 17 00:00:00 2001 From: amogh7joshi Date: Thu, 25 Nov 2021 10:28:46 -0500 Subject: [PATCH 2/2] Typos --- agml/data/loader.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/agml/data/loader.py b/agml/data/loader.py index 9e249f12..d52b4ea7 100644 --- a/agml/data/loader.py +++ b/agml/data/loader.py @@ -583,7 +583,6 @@ def transform(self, The hierarchy in which transforms are applied is: - transform -> --------| |-----> dual_transform target_transform -> --| @@ -639,7 +638,7 @@ def transform(self, - Albumentations transforms are special in that even transforms which would normally be passed to `dual_transform` (e.g., they act on the input image and the output annotation) can simply be passed to the - `transform` method and they will automatically be applied. + `transform` argument and they will automatically be applied. """ self._manager.push_transforms( transform = transform,