From a8781bf415d24b46520db852de0c7463a5e40ec7 Mon Sep 17 00:00:00 2001 From: Amogh Joshi Date: Thu, 10 Oct 2024 16:45:35 -0400 Subject: [PATCH 1/2] Bump to version 0.6.2 --- agml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agml/__init__.py b/agml/__init__.py index 65b7bd9c..b1d218c9 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.6.1' +__version__ = '0.6.2' __all__ = ['data', 'synthetic', 'backend', 'viz', 'io'] From e28baccc4612050b32fc569bd5d02874faa66a48 Mon Sep 17 00:00:00 2001 From: Amogh Joshi Date: Sun, 13 Oct 2024 19:04:15 -0400 Subject: [PATCH 2/2] YOLO export tool returns metadata path too --- agml/data/exporters/yolo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agml/data/exporters/yolo.py b/agml/data/exporters/yolo.py index 400c70aa..894212a9 100644 --- a/agml/data/exporters/yolo.py +++ b/agml/data/exporters/yolo.py @@ -154,7 +154,7 @@ def export_yolo(dataset, yolo_path=None): """.format(yolo_data_path, os.path.join(yolo_path, 'data', 'dataset.yaml')) log(information) - return yolo_data_path + return {'dataset_path': yolo_data_path, 'metadata_path': os.path.join(yolo_path, 'data', 'dataset.yaml')}