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.
200 lines
5.2 KiB
200 lines
5.2 KiB
<template>
|
|
<base-card
|
|
:disabled="!valid"
|
|
:title="$t('overview.createProjectTitle')"
|
|
:agree-text="$t('generic.save')"
|
|
:cancel-text="$t('generic.cancel')"
|
|
@agree="$emit('save')"
|
|
@cancel="$emit('cancel')"
|
|
>
|
|
<template #content>
|
|
<v-form v-model="valid">
|
|
<v-text-field
|
|
:value="name"
|
|
:rules="projectNameRules($t('rules.projectNameRules'))"
|
|
:label="$t('overview.projectName')"
|
|
:prepend-icon="mdiAccountMultiple"
|
|
required
|
|
autofocus
|
|
@input="updateValue('name', $event)"
|
|
/>
|
|
<v-text-field
|
|
:value="description"
|
|
:rules="descriptionRules($t('rules.descriptionRules'))"
|
|
:label="$t('generic.description')"
|
|
:prepend-icon="mdiClipboardText"
|
|
required
|
|
@input="updateValue('description', $event)"
|
|
/>
|
|
<v-select
|
|
:value="projectType"
|
|
:items="projectTypes"
|
|
:rules="projectTypeRules($t('rules.projectTypeRules'))"
|
|
:label="$t('overview.projectType')"
|
|
:prepend-icon="mdiKeyboard"
|
|
required
|
|
@input="updateValue('projectType', $event)"
|
|
>
|
|
<template #item="props">
|
|
{{ translateTypeName(props.item, $t('overview.projectTypes')) }}
|
|
</template>
|
|
<template #selection="props">
|
|
{{ translateTypeName(props.item, $t('overview.projectTypes')) }}
|
|
</template>
|
|
</v-select>
|
|
<v-checkbox
|
|
v-if="hasSingleLabelOption"
|
|
:value="singleClassClassification"
|
|
label="Allow single label"
|
|
@change="updateValue('singleClassClassification', $event === true)"
|
|
/>
|
|
<v-checkbox
|
|
v-if="isSequenceLabelingProject"
|
|
:value="allowOverlapping"
|
|
label="Allow overlapping entity"
|
|
@change="updateValue('allowOverlapping', $event === true)"
|
|
/>
|
|
<v-img
|
|
v-if="isSequenceLabelingProject"
|
|
:src="require('~/assets/project/creation.gif')"
|
|
height="200"
|
|
position="left"
|
|
contain
|
|
/>
|
|
<v-checkbox
|
|
v-if="isSequenceLabelingProject"
|
|
:value="graphemeMode"
|
|
@change="updateValue('graphemeMode', $event === true)"
|
|
>
|
|
<template #label>
|
|
<div>
|
|
Count
|
|
<v-tooltip bottom>
|
|
<template #activator="{ on }">
|
|
<a
|
|
target="_blank"
|
|
href="https://unicode.org/reports/tr29/"
|
|
@click.stop
|
|
v-on="on"
|
|
>
|
|
grapheme clusters
|
|
</a>
|
|
</template>
|
|
Like emoji(🌷, 💩, and 👍), CRLF(\r\n), and so on.
|
|
</v-tooltip>
|
|
as one character
|
|
</div>
|
|
</template>
|
|
</v-checkbox>
|
|
<v-checkbox
|
|
:value="enableRandomOrder"
|
|
:label="$t('overview.randomizeDocOrder')"
|
|
@change="updateValue('enableRandomOrder', $event === true)"
|
|
/>
|
|
<v-checkbox
|
|
:value="enableShareAnnotation"
|
|
:label="$t('overview.shareAnnotations')"
|
|
@change="updateValue('enableShareAnnotation', $event === true)"
|
|
/>
|
|
</v-form>
|
|
</template>
|
|
</base-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import { mdiAccountMultiple, mdiClipboardText, mdiKeyboard } from '@mdi/js'
|
|
import BaseCard from '@/components/utils/BaseCard.vue'
|
|
import { projectNameRules, descriptionRules, projectTypeRules } from '@/rules/index'
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
BaseCard
|
|
},
|
|
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
projectType: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
enableRandomOrder: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
},
|
|
enableShareAnnotation: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
},
|
|
singleClassClassification: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
},
|
|
allowOverlapping: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
graphemeMode: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
valid: false,
|
|
projectNameRules,
|
|
projectTypeRules,
|
|
descriptionRules,
|
|
mdiAccountMultiple,
|
|
mdiClipboardText,
|
|
mdiKeyboard
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
projectTypes() {
|
|
return [
|
|
'DocumentClassification',
|
|
'SequenceLabeling',
|
|
'Seq2seq',
|
|
'IntentDetectionAndSlotFilling',
|
|
'ImageClassification',
|
|
'Speech2text',
|
|
]
|
|
},
|
|
hasSingleLabelOption() {
|
|
return [
|
|
'DocumentClassification',
|
|
'ImageClassification',
|
|
].includes(this.projectType)
|
|
},
|
|
isSequenceLabelingProject() {
|
|
return this.projectType === 'SequenceLabeling'
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
updateValue(key: string, value: string) {
|
|
this.$emit(`update:${key}`, value);
|
|
},
|
|
translateTypeName(type: string, types: string[]): string {
|
|
const index = this.projectTypes.indexOf(type)
|
|
return types[index]
|
|
}
|
|
}
|
|
})
|
|
</script>
|