Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export enum JobType {
SKELETONS_FROM_BOUNDING_BOXES = 'image_skeletons_from_boxes',
POLYGONS = 'image_polygons',
AUDIO_TRANSCRIPTION = 'audio_transcription',
AUDIO_ATTRIBUTE_ANNOTATION = 'audio_attribute_annotation',
}

export const EthKVStoreKeys = {
Expand Down
3 changes: 2 additions & 1 deletion packages/apps/human-app/frontend/src/shared/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@
"image_boxes_from_points": "Bounding Boxes from Points",
"image_skeletons_from_boxes": "Skeletons from Bounding Boxes",
"image_polygons": "Polygons",
"audio_transcription": "Audio Transcription"
"audio_transcription": "Audio Transcription",
"audio_attribute_annotation": "Audio Attribute Annotation"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ export enum CvatJobType {

export enum AudinoJobType {
AUDIO_TRANSCRIPTION = 'audio_transcription',
AUDIO_ATTRIBUTE_ANNOTATION = 'audio_attribute_annotation',
}
Loading