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.
@@ -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 numpy array (False).
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
- if as_pandas is None and isinstance(data, pd.DataFrame):
714
- as_pandas = True
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
 
@@ -1,4 +1,4 @@
1
1
  """This is the autogluon version file."""
2
2
 
3
- __version__ = "1.2.1b20250213"
3
+ __version__ = "1.2.1b20250214"
4
4
  __lite__ = False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autogluon.multimodal
3
- Version: 1.2.1b20250213
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.1b20250213
61
- Requires-Dist: autogluon.features==1.2.1b20250213
62
- Requires-Dist: autogluon.common==1.2.1b20250213
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.1b20250213-py3.9-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
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=-eMcoN37NqYnyDHzrKYBqqrt5oVGROjtYzQ6FocTpmU,91
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=NmaQWaakpnIA1owZNvGeO1B3Sk3p3ngWnNJM21EeeVM,30846
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.1b20250213.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
139
- autogluon.multimodal-1.2.1b20250213.dist-info/METADATA,sha256=WHCUw79mXlSw_eGOZ9bAqcuGyq9vfdH2YQG9zKakMX8,13196
140
- autogluon.multimodal-1.2.1b20250213.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
141
- autogluon.multimodal-1.2.1b20250213.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
142
- autogluon.multimodal-1.2.1b20250213.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
143
- autogluon.multimodal-1.2.1b20250213.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
144
- autogluon.multimodal-1.2.1b20250213.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
145
- autogluon.multimodal-1.2.1b20250213.dist-info/RECORD,,
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,,