-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvert2csv.kf
42 lines (42 loc) · 866 Bytes
/
convert2csv.kf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"flow_name" : "convert2csv",
"steps" : [
{
"class" : "weka.knowledgeflow.steps.Loader",
"properties" : {
"loader" : {
"type" : "loader",
"class" : "weka.core.converters.ArffLoader",
"filePath" : "csv_inputfile",
"useRelativePath" : false
},
"name" : "ArffLoader"
},
"connections" : {
"dataSet" : [
"CSVSaver"
]
},
"coordinates" : "106,80"
},
{
"class" : "weka.knowledgeflow.steps.Saver",
"properties" : {
"name" : "CSVSaver",
"relationNameForFilename" : false,
"saver" : {
"type" : "saver",
"class" : "weka.core.converters.CSVSaver",
"filePath" : "",
"dir" : "outputpath",
"prefix" : "outputfilename",
"useRelativePath" : false,
"options" : "-F , -M ? -decimal 6"
}
},
"connections" : {
},
"coordinates" : "353,82"
}
]
}