Changes
Page history
alexlag created page: docker
authored
Apr 13, 2015
by
Aleksey Laguta
Hide whitespace changes
Inline
Side-by-side
deployment.markdown
View page @
5a09364a
...
...
@@ -38,18 +38,25 @@ Configuration file with comments(not copy-ready, json files don't support commen
# main AnnotameLE config
"annotamele"
:
{
# Array of types for questions
"types"
:
[
{
# Either singlelabel or multilabel currently
"name"
:
"singlelabel"
,
# Parameters for type
"params"
:
[
# Question to be asked
"Classification question?"
,
# Array of answer options as strings
[
"Answer 1"
,
"Answer 2"
]
]
}
"types"
:
[
{
# Either SingleLabel or MultiLabel currently
"name"
:
"SingleLabel"
,
# Parameters for type
"params"
:
{
# Question to be asked
"text"
:
"Select one answer below:"
,
# Array of answer options as strings
"options"
:
[
"Answer 1"
,
"Answer 2"
,
"Answer 3"
]
}
},
{
"name"
:
"MultiLabel"
,
"params"
:
{
"text"
:
"Select several answers below:"
,
"options"
:
[
"First Answer"
,
"Second Answer"
,
"Third Answer"
]
}
}
],
# Absolute path to dataset file
"dataset"
:"/path/to/dataset.json"
...
...
...
...