internet_ml/web/frontend/pages/NLP/no-context/index.vue

24 lines
760 B
Vue

<template lang="pug">
div
.grid.grid-cols-1.place-content-center.align-middle.gap-y-10.h-screen.text-center
.grid.grid-cols-1.place-self-center
h1.text-5xl
a.url(href='/NLP') Internet-NLP
h1.text-2xl
a.url(href='/NLP/no-context') No context tools
h1.text-2xl
a.url(href='/') Part of Internet-ML
.grid.grid-cols-1.gap-y-4.place-items-center(class='md:grid-cols-2')
h1.text-2xl
a.url(href='/NLP/no-context/question-answering') Question Answering
h1.text-2xl
a.url(href='/NLP/context/NLI') NLI
</template>
<script>
import Vue from 'vue'
export default Vue.extend({
name: 'InternetNLP'
})
</script>