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.
36 lines
652 B
36 lines
652 B
<template lang="pug">
|
|
extends ./upload.pug
|
|
|
|
block select-format-area
|
|
label.radio
|
|
input(
|
|
type="radio"
|
|
name="format"
|
|
value="json"
|
|
v-bind:checked="format === 'json'"
|
|
v-model="format"
|
|
)
|
|
| JSONL
|
|
|
|
label.radio
|
|
input(
|
|
type="radio"
|
|
name="format"
|
|
value="audio"
|
|
v-bind:checked="format === 'audio'"
|
|
v-model="format"
|
|
)
|
|
| Audio
|
|
|
|
block example-format-area
|
|
pre.code-block(v-show="format === 'json'")
|
|
code.json
|
|
include ./examples/upload_speech2text.jsonl
|
|
| ...
|
|
</template>
|
|
|
|
<script>
|
|
import uploadMixin from './uploadMixin';
|
|
|
|
export default uploadMixin;
|
|
</script>
|