mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
307 B
12 lines
307 B
export interface Disagreement {
|
|
id: number;
|
|
dataset_item_id: number;
|
|
annotations: number[];
|
|
disagreement_details?: any;
|
|
status: string;
|
|
resolved_by?: number | null;
|
|
resolution_comments?: string;
|
|
created_at: string;
|
|
updated_at: string;
|
|
resolved_at?: string | null;
|
|
}
|