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.
 
 
 
 
 
 

44 lines
876 B

<template lang="pug">
extends ./upload.pug
block select-format-area
label.radio
input(
type="radio"
name="format"
value="csv"
v-bind:checked="format === 'csv'"
v-model="format"
)
| CSV
label.radio
input(
type="radio"
name="format"
value="json"
v-bind:checked="format === 'json'"
v-model="format"
)
| JSONL
block example-format-area
pre.code-block(v-show="format === 'plain'")
code.plaintext
include ./examples/upload_seq2seq.txt
| ...
pre.code-block(v-show="format === 'csv'")
code.csv
include ./examples/upload_seq2seq.csv
| ...
pre.code-block(v-show="format === 'json'")
code.json
include ./examples/upload_seq2seq.jsonl
| ...
</template>
<script>
import uploadMixin from './uploadMixin';
export default uploadMixin;
</script>