File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
libs/labelbox/src/labelbox/schema Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ Labelbox Python SDK Documentation
29
29
labeling-frontend
30
30
labeling-frontend-options
31
31
labeling-parameter-override
32
+ labeling-service
32
33
model
33
34
model-config
34
35
model-run
Original file line number Diff line number Diff line change 1
- Project Labeling Service
1
+ Labeling Service
2
2
===============================================================================================
3
3
4
4
.. automodule :: labelbox.schema.labeling_service
Original file line number Diff line number Diff line change 7
7
import labelbox .schema .invite
8
8
import labelbox .schema .label
9
9
import labelbox .schema .labeling_frontend
10
+ import labelbox .schema .labeling_service
10
11
import labelbox .schema .model
11
12
import labelbox .schema .model_run
12
13
import labelbox .schema .ontology
Original file line number Diff line number Diff line change 12
12
13
13
14
14
class LabelingServiceStatus (Enum ):
15
+ """"
16
+ The status of the labeling service.
17
+ """
15
18
Accepted = 'ACCEPTED'
16
19
Calibration = 'CALIBRATION'
17
20
Complete = 'COMPLETE'
@@ -21,6 +24,9 @@ class LabelingServiceStatus(Enum):
21
24
22
25
23
26
class LabelingService (BaseModel ):
27
+ """
28
+ Labeling service for a project. This is a service that can be requested to label data for a project.
29
+ """
24
30
id : Cuid
25
31
project_id : Cuid
26
32
created_at : datetime
You can’t perform that action at this time.
0 commit comments