@@ -389,6 +389,31 @@ def get_archive_full_with_pro_id(self, project_id: str, **kwargs) -> Tuple[Any,
389
389
keyword_params : Dict [str , Any ] = {}
390
390
return self ._request_wrapper (http_method , url_path , ** keyword_params )
391
391
392
+ def get_editor_annotation (self , project_id : str , task_id : str , input_data_id : str ,
393
+ ** kwargs ) -> Tuple [Any , requests .Response ]:
394
+ """タスク/入力データのアノテーション一括取得
395
+
396
+
397
+ authorizations: AllProjectMember
398
+
399
+
400
+ [putAnnotation](#operation/putAnnotation)が要求する構造のアノテーションを取得します。 このAPIは、[putAnnotation](#operation/putAnnotation)をより利用しやすくする目的で提供しています。 機械学習などで利用する成果物としてのアノテーションを取得するには、以下をご利用いただけます。 * [getAnnotation](#operation/getAnnotation): 特定のタスク - 入力データのアノテーション取得 * [getAnnotationArchive](#operation/getAnnotationArchive): プロジェクト全体のアノテーション(ZIP)
401
+
402
+ Args:
403
+ project_id (str): プロジェクトID (required)
404
+ task_id (str): タスクID (required)
405
+ input_data_id (str): 入力データID (required)
406
+
407
+ Returns:
408
+ Tuple[Annotation, requests.Response]
409
+
410
+
411
+ """
412
+ url_path = f'/projects/{ project_id } /tasks/{ task_id } /inputs/{ input_data_id } /annotation'
413
+ http_method = 'GET'
414
+ keyword_params : Dict [str , Any ] = {}
415
+ return self ._request_wrapper (http_method , url_path , ** keyword_params )
416
+
392
417
def post_annotation_archive_update (self , project_id : str , ** kwargs ) -> Tuple [Any , requests .Response ]:
393
418
"""アノテーションZIP更新開始
394
419
@@ -1786,6 +1811,7 @@ def get_account_statistics(self, project_id: str, **kwargs) -> Tuple[Any, reques
1786
1811
authorizations: AllProjectMember
1787
1812
1788
1813
1814
+ ユーザごと、日ごとに集計した以下のデータを取得します。 * 教師付を担当したタスクが完了状態になった回数 * 教師付を担当したタスクが差し戻された回数 * 作業時間
1789
1815
1790
1816
Args:
1791
1817
project_id (str): プロジェクトID (required)
@@ -1807,6 +1833,7 @@ def get_inspection_statistics(self, project_id: str, **kwargs) -> Tuple[Any, req
1807
1833
authorizations: AllProjectMember
1808
1834
1809
1835
1836
+ ラベルごと、定型指摘ごとに集計した検査コメント数を取得します。
1810
1837
1811
1838
Args:
1812
1839
project_id (str): プロジェクトID (required)
@@ -1871,6 +1898,7 @@ def get_task_phase_statistics(self, project_id: str, **kwargs) -> Tuple[Any, req
1871
1898
authorizations: AllProjectMember
1872
1899
1873
1900
1901
+ 日ごと、フェーズごとに集計した以下のデータを取得します。 * 累積作業時間
1874
1902
1875
1903
Args:
1876
1904
project_id (str): プロジェクトID (required)
@@ -1892,6 +1920,7 @@ def get_task_statistics(self, project_id: str, **kwargs) -> Tuple[Any, requests.
1892
1920
authorizations: AllProjectMember
1893
1921
1894
1922
1923
+ 日ごと、タスクフェーズごと、タスクステータスごとに集計した以下のデータを取得します。 * タスク数 * 累計作業時間
1895
1924
1896
1925
Args:
1897
1926
project_id (str): プロジェクトID (required)
0 commit comments