Create config.json
Browse files- config.json +25 -0
config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "Pipeline",
|
3 |
+
"pipeline_steps": [
|
4 |
+
{
|
5 |
+
"name": "vectorizer",
|
6 |
+
"type": "DictVectorizer",
|
7 |
+
"parameters": {
|
8 |
+
"sparse": true
|
9 |
+
}
|
10 |
+
},
|
11 |
+
{
|
12 |
+
"name": "classifier",
|
13 |
+
"type": "OneVsRestClassifier",
|
14 |
+
"parameters": {
|
15 |
+
"estimator": {
|
16 |
+
"name": "LinearSVC",
|
17 |
+
"parameters": {
|
18 |
+
"random_state": 0,
|
19 |
+
"dual": false
|
20 |
+
}
|
21 |
+
}
|
22 |
+
}
|
23 |
+
}
|
24 |
+
]
|
25 |
+
}
|