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.
14 lines
388 B
14 lines
388 B
export type Label = {[key: string]: number}
|
|
export type User = {[key: string]: number}
|
|
export type ConfirmedCount = {[key: string]: number}
|
|
export type Distribution = {[user: string]: {[label: string]: number}}
|
|
export interface Progress {
|
|
total: number
|
|
progress: {user: string, done: number}[]
|
|
}
|
|
|
|
export interface MyProgress {
|
|
total: number
|
|
complete: number
|
|
remaining: number
|
|
}
|