Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Frank Tjado Ihmels
medienverarbeitung17.projectmood
Commits
3dc1384f
Commit
3dc1384f
authored
Jan 13, 2018
by
tihmels
Browse files
Process Model für Cluster Einsatz vorbereitet
parent
0ab70fd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
projectmood/process_model.py
View file @
3dc1384f
...
...
@@ -27,9 +27,9 @@ Argument Parser erlaubt Parameter für die Verarbeitung anzugeben.
parser
=
argparse
.
ArgumentParser
(
description
=
'Process Model Application'
)
parser
.
add_argument
(
'--dataset'
,
action
=
'store'
,
dest
=
'dataset'
,
default
=
'resources/img_data/dataset/'
,
help
=
'path to dataset'
)
parser
.
add_argument
(
'-i'
,
action
=
'store'
,
dest
=
'iterations'
,
type
=
int
,
default
=
30
,
help
=
'
declare processing
iterations'
)
parser
.
add_argument
(
'-i'
,
action
=
'store'
,
dest
=
'iterations'
,
type
=
int
,
default
=
30
,
help
=
'
number of
iterations'
)
parser
.
add_argument
(
'-e'
,
action
=
'append'
,
dest
=
'emotions'
,
default
=
[
'happy'
,
'neutral'
,
'surprise'
],
help
=
'declare emotions that should be processed'
)
parser
.
add_argument
(
'-p'
,
action
=
'append'
,
dest
=
'properties'
,
help
=
'pre-processing steps'
)
parser
.
add_argument
(
'-p'
,
action
=
'append'
,
dest
=
'properties'
,
help
=
'pre-processing steps
for logging
'
)
parser
.
add_argument
(
'--test'
,
action
=
'store_true'
,
help
=
'prevent writing new model to file system'
)
parser
.
add_argument
(
'--csv'
,
action
=
'store_true'
,
help
=
'activate csv processing'
)
parser
.
add_argument
(
'--email'
,
action
=
'store_true'
,
help
=
'activate email notifications'
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment