Alshargi commited on
Commit
2a9f8e4
โ€ข
1 Parent(s): 04a326e

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +16 -22
config.json CHANGED
@@ -1,25 +1,19 @@
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
  }
 
1
  {
2
+ "sklearn": {
3
+ "columns": [
4
+ "petal length (cm)",
5
+ "petal width (cm)",
6
+ "sepal length (cm)",
7
+ "sepal width (cm)"
8
+ ],
9
+ "environment": ["scikit-learn=1.1.1", "numpy"],
10
+ "example_input": {
11
+ "petal length (cm)": [1.4, 1.4, 1.3],
12
+ "petal width (cm)": [0.2, 0.2, 0.2],
13
+ "sepal length (cm)": [5.1, 4.9, 4.7],
14
+ "sepal width (cm)": [3.5, 3.0, 3.2]
15
+ },
16
+ "model": {"file": "arabic-msa-dialects-segmentation-v1.pkl"},
17
+ "task": "arabic-segmentation"
 
 
 
 
 
18
  }
 
19
  }