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.
78 lines
2.0 KiB
78 lines
2.0 KiB
<template>
|
|
<section>
|
|
<v-parallax
|
|
:src="require(`~/assets/vbanner.jpg`)"
|
|
height="400"
|
|
dark
|
|
>
|
|
<v-container>
|
|
<v-layout
|
|
wrap
|
|
align-center
|
|
justify-center
|
|
class="white--text"
|
|
>
|
|
<v-flex
|
|
xs12
|
|
md7
|
|
>
|
|
<v-img
|
|
:src="require(`~/assets/ner_demo.png`)"
|
|
max-height="380"
|
|
contain
|
|
class="ma-5"
|
|
/>
|
|
</v-flex>
|
|
<v-flex
|
|
xs12
|
|
md5
|
|
>
|
|
<h1 class="mb-2 display-1 text-xs-center">
|
|
{{ $t('home.footerTitle') }}
|
|
</h1>
|
|
<div class="mt-4">
|
|
<v-menu open-on-hover offset-y>
|
|
<template v-slot:activator="{ on }">
|
|
<v-btn
|
|
class="blue lighten-2"
|
|
dark
|
|
large
|
|
v-on="on"
|
|
>
|
|
{{ $t('home.demoDropDown') }}
|
|
<v-icon>mdi-menu-down</v-icon>
|
|
</v-btn>
|
|
</template>
|
|
<v-list>
|
|
<v-list-item
|
|
v-for="(item, index) in items"
|
|
:key="index"
|
|
@click="$router.push(localePath('/demo/' + item.link))"
|
|
>
|
|
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
|
</v-list-item>
|
|
</v-list>
|
|
</v-menu>
|
|
</div>
|
|
</v-flex>
|
|
</v-layout>
|
|
</v-container>
|
|
</v-parallax>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
export default Vue.extend({
|
|
data() {
|
|
return {
|
|
items: [
|
|
{ title: this.$t('home.demoNER'), link: 'named-entity-recognition' },
|
|
{ title: this.$t('home.demoSent'), link: 'sentiment-analysis' },
|
|
{ title: this.$t('home.demoTranslation'), link: 'translation' },
|
|
{ title: this.$t('home.demoTextToSQL'), link: 'text-to-sql' }
|
|
]
|
|
}
|
|
}
|
|
})
|
|
</script>
|