@@ -83,7 +83,7 @@ def validate_labeling_parameter_overrides(
83
83
84
84
85
85
class Project (DbObject , Updateable , Deletable ):
86
- """ A Project is a container that includes a labeling frontend, an ontology,
86
+ """A Project is a container that includes a labeling frontend, an ontology,
87
87
datasets and labels.
88
88
89
89
Attributes:
@@ -96,6 +96,8 @@ class Project(DbObject, Updateable, Deletable):
96
96
queue_mode (string)
97
97
auto_audit_number_of_labels (int)
98
98
auto_audit_percentage (float)
99
+ is_benchmark_enabled (bool)
100
+ is_consensus_enabled (bool)
99
101
100
102
created_by (Relationship): `ToOne` relationship to User
101
103
organization (Relationship): `ToOne` relationship to Organization
@@ -123,6 +125,8 @@ class Project(DbObject, Updateable, Deletable):
123
125
data_row_count = Field .Int ("data_row_count" )
124
126
model_setup_complete : Field = Field .Boolean ("model_setup_complete" )
125
127
upload_type : Field = Field .Enum (UploadType , "upload_type" )
128
+ is_benchmark_enabled = Field .Boolean ("is_benchmark_enabled" )
129
+ is_consensus_enabled = Field .Boolean ("is_consensus_enabled" )
126
130
127
131
# Relationships
128
132
created_by = Relationship .ToOne ("User" , False , "created_by" )
0 commit comments