77from pathlib import Path
88from typing import (
99 TYPE_CHECKING ,
10+ Any ,
1011 Dict ,
1112 Iterable ,
12- Union ,
13- Tuple ,
1413 List ,
1514 Optional ,
16- Any ,
15+ Tuple ,
16+ Union ,
1717)
1818
19-
2019from labelbox .orm .db_object import DbObject , experimental
21- from labelbox .orm .model import Field , Relationship , Entity
20+ from labelbox .orm .model import Entity , Field , Relationship
2221from labelbox .orm .query import results_query_part
2322from labelbox .pagination import PaginatedCollection
2423from labelbox .schema .conflict_resolution_strategy import (
2524 ConflictResolutionStrategy ,
2625)
2726from labelbox .schema .export_params import ModelRunExportParams
2827from labelbox .schema .export_task import ExportTask
29- from labelbox .schema .identifiables import GlobalKeys , DataRowIds
28+ from labelbox .schema .identifiables import DataRowIds , GlobalKeys
3029from labelbox .schema .send_to_annotate_params import (
3130 SendToAnnotateFromModelParams ,
3231 build_destination_task_queue_input ,
@@ -458,7 +457,6 @@ def update_status(
458457 experimental = True ,
459458 )
460459
461- @experimental
462460 def update_config (self , config : Dict [str , Any ]) -> Dict [str , Any ]:
463461 """
464462 Updates the Model Run's training metadata config
@@ -474,11 +472,9 @@ def update_config(self, config: Dict[str, Any]) -> Dict[str, Any]:
474472 }
475473 """ ,
476474 {"modelRunId" : self .uid , "data" : data },
477- experimental = True ,
478475 )
479476 return res ["updateModelRunConfig" ]
480477
481- @experimental
482478 def reset_config (self ) -> Dict [str , Any ]:
483479 """
484480 Resets Model Run's training metadata config
@@ -491,11 +487,9 @@ def reset_config(self) -> Dict[str, Any]:
491487 }
492488 """ ,
493489 {"modelRunId" : self .uid },
494- experimental = True ,
495490 )
496491 return res ["resetModelRunConfig" ]
497492
498- @experimental
499493 def get_config (self ) -> Dict [str , Any ]:
500494 """
501495 Gets Model Run's training metadata
@@ -508,7 +502,6 @@ def get_config(self) -> Dict[str, Any]:
508502 }
509503 """ ,
510504 {"modelRunId" : self .uid },
511- experimental = True ,
512505 )
513506 return res ["modelRun" ]["trainingMetadata" ]
514507
0 commit comments