mirror of https://github.com/doccano/doccano.git
pythondatasetnatural-language-processingdata-labelingmachine-learningannotation-tooldatasetsactive-learningtext-annotation
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.
33 lines
1.0 KiB
33 lines
1.0 KiB
import { TextClassificationItem } from '@/models/tasks/text-classification'
|
|
import { TextClassificationRepository } from '@/repositories/tasks/text-classification/interface'
|
|
|
|
export class TextClassificationDTO {
|
|
id: number
|
|
label: number
|
|
user: number
|
|
|
|
constructor(item: TextClassificationItem) {
|
|
this.id = item.id
|
|
this.label = item.label
|
|
this.user = item.user
|
|
}
|
|
}
|
|
|
|
export class TextClassificationApplicationService {
|
|
constructor(
|
|
private readonly repository: TextClassificationRepository
|
|
) {}
|
|
|
|
public async list(projectId: string, docId: number): Promise<TextClassificationDTO[]> {
|
|
const items = await this.repository.list(projectId, docId)
|
|
return items.map(item => new TextClassificationDTO(item))
|
|
}
|
|
|
|
public async create(projectId: string, docId: number, labelId: number): Promise<void> {
|
|
await this.repository.create(projectId, docId, labelId)
|
|
}
|
|
|
|
public async delete(projectId: string, docId: number, annotationId: number): Promise<void> {
|
|
await this.repository.delete(projectId, docId, annotationId)
|
|
}
|
|
}
|