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

24 lines
760 B
Vue
Raw Normal View History

2023-01-03 01:57:12 +00:00
<template lang="pug">
div
2023-01-10 12:50:43 +00:00
.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
2023-01-03 01:57:12 +00:00
</template>
2023-01-02 16:34:56 +00:00
<script>
import Vue from 'vue'
export default Vue.extend({
name: 'InternetNLP'
})
</script>