autogluon.multimodal 1.2.1b20250213__py3-none-any.whl → 1.2.1b20250214__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- autogluon/multimodal/learners/object_detection.py +6 -3
- autogluon/multimodal/version.py +1 -1
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/METADATA +4 -4
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/RECORD +11 -11
- /autogluon.multimodal-1.2.1b20250213-py3.9-nspkg.pth → /autogluon.multimodal-1.2.1b20250214-py3.9-nspkg.pth +0 -0
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/LICENSE +0 -0
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/NOTICE +0 -0
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/WHEEL +0 -0
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/namespace_packages.txt +0 -0
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/top_level.txt +0 -0
- {autogluon.multimodal-1.2.1b20250213.dist-info → autogluon.multimodal-1.2.1b20250214.dist-info}/zip-safe +0 -0
@@ -695,7 +695,9 @@ class ObjectDetectionLearner(BaseLearner):
|
|
695
695
|
The data to make predictions for. Should contain same column names as training data and
|
696
696
|
follow same format (except for the `label` column).
|
697
697
|
as_pandas
|
698
|
-
Whether to return the output as a pandas DataFrame(Series) (True) or
|
698
|
+
Whether to return the output as a pandas DataFrame(Series) (True) or Instance Data (False).
|
699
|
+
For the definition of Instance Data in MMDetection/MMEngine, see
|
700
|
+
https://github.com/open-mmlab/mmengine/blob/698782f9203a6bfcc0e445047fd2300796ecbf0f/mmengine/structures/instance_data.py#L34
|
699
701
|
as_coco
|
700
702
|
Whether to save the output as a COCO json file (True) or pandas DataFrame (False).
|
701
703
|
realtime
|
@@ -710,8 +712,9 @@ class ObjectDetectionLearner(BaseLearner):
|
|
710
712
|
Array of predictions, one corresponding to each row in given dataset.
|
711
713
|
"""
|
712
714
|
self.ensure_predict_ready()
|
713
|
-
|
714
|
-
|
715
|
+
|
716
|
+
if as_pandas is None:
|
717
|
+
as_pandas = True # return pandas dataframe by default
|
715
718
|
|
716
719
|
ret_type = BBOX
|
717
720
|
|
autogluon/multimodal/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: autogluon.multimodal
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.1b20250214
|
4
4
|
Summary: Fast and Accurate ML in 3 Lines of Code
|
5
5
|
Home-page: https://github.com/autogluon/autogluon
|
6
6
|
Author: AutoGluon Community
|
@@ -57,9 +57,9 @@ Requires-Dist: scikit-image<0.25.0,>=0.19.1
|
|
57
57
|
Requires-Dist: text-unidecode<1.4,>=1.3
|
58
58
|
Requires-Dist: torchmetrics<1.6.2,>=1.2.0
|
59
59
|
Requires-Dist: omegaconf<2.3.0,>=2.1.1
|
60
|
-
Requires-Dist: autogluon.core[raytune]==1.2.
|
61
|
-
Requires-Dist: autogluon.features==1.2.
|
62
|
-
Requires-Dist: autogluon.common==1.2.
|
60
|
+
Requires-Dist: autogluon.core[raytune]==1.2.1b20250214
|
61
|
+
Requires-Dist: autogluon.features==1.2.1b20250214
|
62
|
+
Requires-Dist: autogluon.common==1.2.1b20250214
|
63
63
|
Requires-Dist: pytorch-metric-learning<2.4,>=1.3.0
|
64
64
|
Requires-Dist: nlpaug<1.2.0,>=1.1.10
|
65
65
|
Requires-Dist: nltk<3.9,>=3.4.5
|
@@ -1,11 +1,11 @@
|
|
1
|
-
autogluon.multimodal-1.2.
|
1
|
+
autogluon.multimodal-1.2.1b20250214-py3.9-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
|
2
2
|
autogluon/multimodal/__init__.py,sha256=EuWb-QmtFBKePJw4_4Kpp9dKrabv121haYw_Oiu2jfI,238
|
3
3
|
autogluon/multimodal/constants.py,sha256=8IDFqC45Sz3fD0VO2wpzj5Ino387yMAvmKMt-QRhzK0,9122
|
4
4
|
autogluon/multimodal/predictor.py,sha256=beV2gOcTnviYtU8UWTWdqWYTbuk5sC6Sba-pAEaFQyg,40936
|
5
5
|
autogluon/multimodal/presets.py,sha256=VR_arn7X4eiQcGcvJVmwxDopPJGvYP1W1cBZ2AOcdJM,25882
|
6
6
|
autogluon/multimodal/problem_types.py,sha256=H0q2V--d_KH7YL_AxMrs77SHR5SBVLDsdie9F2Uu1kM,8627
|
7
7
|
autogluon/multimodal/registry.py,sha256=vqvONWweZP44aBo1jCvlqLdL0Agn2kyTK8uXUwagZhs,3670
|
8
|
-
autogluon/multimodal/version.py,sha256
|
8
|
+
autogluon/multimodal/version.py,sha256=8Tmp21TkXTfD8Z5sz4QOVI4VADn1m2dhdYptL7KOEGE,91
|
9
9
|
autogluon/multimodal/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
10
|
autogluon/multimodal/cli/prepare_detection_dataset.py,sha256=9NCYmCUMPRWbxxbN_C7YQjMYlrAm8gbwJ3Qd-79JWH4,5218
|
11
11
|
autogluon/multimodal/cli/voc2coco.py,sha256=LXVu9RIfOZs_1URrzO-_3Nrvb9uGEgPxCY4-B6m1coc,9605
|
@@ -71,7 +71,7 @@ autogluon/multimodal/learners/base.py,sha256=IUHRBzwrKqAwo9nDsqzg0rBQaFiVxfyeMnd
|
|
71
71
|
autogluon/multimodal/learners/few_shot_svm.py,sha256=TXauhXr_2hWqaEwO8XhFxWRRPXDYxLpmmKYaCrxFWPM,23934
|
72
72
|
autogluon/multimodal/learners/matching.py,sha256=gueWrqy0g9gVbyBvQOAj03JgBwbJsBXeLLtKsiTzrnU,89891
|
73
73
|
autogluon/multimodal/learners/ner.py,sha256=0VZl_Z1O98A5mOSw8Ee8F9foaCT684DT0j1ALx-8RU4,19035
|
74
|
-
autogluon/multimodal/learners/object_detection.py,sha256=
|
74
|
+
autogluon/multimodal/learners/object_detection.py,sha256=u9RVqqw3TR9YLIduF3HOzvG-oAd9np2QMS1Hqvkg5dg,31067
|
75
75
|
autogluon/multimodal/learners/semantic_segmentation.py,sha256=cy2ALYTtqeSnPo75htgr5STZ_utgkzeGxp5j4J1mScc,20183
|
76
76
|
autogluon/multimodal/models/__init__.py,sha256=wynO5U5zY_vElZPGL10Oqb7OVkj2iovqzml22MRL3iE,842
|
77
77
|
autogluon/multimodal/models/adaptation_layers.py,sha256=NuzwU_ghk8D2axmDuD8UEZ_HamoMSCcKMV9DB1AYWAg,38425
|
@@ -135,11 +135,11 @@ autogluon/multimodal/utils/object_detection.py,sha256=fHZxon5LoYRmNu_7jm_pDjesVx
|
|
135
135
|
autogluon/multimodal/utils/onnx.py,sha256=rblWnphKTsfbosbieJu8PsH6SMDw4on9BS8bR1plL2U,5607
|
136
136
|
autogluon/multimodal/utils/save.py,sha256=zYIO3mYMGBvHfZcmCUaLpsQa14nVq1LPv2F76uaz89w,3951
|
137
137
|
autogluon/multimodal/utils/visualizer.py,sha256=qAc4_36r3MBDPq1R1jBeb_gcfzIrsylL1S31sRf3wuw,22562
|
138
|
-
autogluon.multimodal-1.2.
|
139
|
-
autogluon.multimodal-1.2.
|
140
|
-
autogluon.multimodal-1.2.
|
141
|
-
autogluon.multimodal-1.2.
|
142
|
-
autogluon.multimodal-1.2.
|
143
|
-
autogluon.multimodal-1.2.
|
144
|
-
autogluon.multimodal-1.2.
|
145
|
-
autogluon.multimodal-1.2.
|
138
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
139
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/METADATA,sha256=f3Xq8e6pakVNTPv2qyuQ7-zrhlUbc44yLSCSH7BpOV4,13196
|
140
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
141
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
142
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
143
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
144
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
145
|
+
autogluon.multimodal-1.2.1b20250214.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|