Browse Source
Merge pull request #671 from tusharmakkar08/master
Clarified input format
pull/673/head
Hiroki Nakayama
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
frontend/store/projects.js
|
|
@ -57,7 +57,7 @@ export const getters = { |
|
|
|
} |
|
|
|
const json = { |
|
|
|
type: 'json', |
|
|
|
text: 'JSON', |
|
|
|
text: 'JSONL', |
|
|
|
accept: '.json,.jsonl' |
|
|
|
} |
|
|
|
const conll = { |
|
|
@ -134,11 +134,11 @@ export const getters = { |
|
|
|
} |
|
|
|
const json = { |
|
|
|
type: 'json', |
|
|
|
text: 'JSON' |
|
|
|
text: 'JSONL' |
|
|
|
} |
|
|
|
const jsonl = { |
|
|
|
type: 'json1', |
|
|
|
text: 'JSON(Text label)' |
|
|
|
text: 'JSONL(Text label)' |
|
|
|
} |
|
|
|
if (state.current.project_type === 'DocumentClassification') { |
|
|
|
json.examples = [ |
|
|
|