@@ -30,7 +30,7 @@ You can change the data source to the local folder path, like:
30
30
31
31
``` json
32
32
{
33
- "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/text-classification-bayes/build/datasource.js?url=file:///path/to/dataset-directory"
33
+ "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/text-classification-bayes/build/datasource.js?url=file:///path/to/dataset-directory"
34
34
}
35
35
```
36
36
@@ -40,7 +40,7 @@ Also, you can compress the `test` and `train` directories into a zip file and st
40
40
41
41
``` json
42
42
{
43
- "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/text-classification-bayes/build/datasource.js?url=http:///oss-host/my-dataset.zip"
43
+ "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/text-classification-bayes/build/datasource.js?url=http:///oss-host/my-dataset.zip"
44
44
}
45
45
```
46
46
@@ -50,7 +50,7 @@ Bayesian model supports both Chinese and English modes, you can specify `cn` or
50
50
51
51
``` json
52
52
{
53
- "model" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/text-classification-bayes/build/model.js?mode=en"
53
+ "model" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/text-classification-bayes/build/model.js?mode=en"
54
54
}
55
55
```
56
56
@@ -81,7 +81,7 @@ You can specify the `url` to the local folder path:
81
81
82
82
``` json
83
83
{
84
- "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/image-classification/build/datasource.js?url=file:///path/to/dataset-directory"
84
+ "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/image-classification/build/datasource.js?url=file:///path/to/dataset-directory"
85
85
}
86
86
```
87
87
@@ -91,7 +91,7 @@ Or http url:
91
91
92
92
``` json
93
93
{
94
- "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/image-classification/build/datasource.js?url=http://oss-host/dataset.zip"
94
+ "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/image-classification/build/datasource.js?url=http://oss-host/dataset.zip"
95
95
}
96
96
```
97
97
@@ -101,7 +101,7 @@ For the image classification task, the dimension (width and height) of all sampl
101
101
``` json
102
102
{
103
103
"dataflow" : [
104
- " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/image-classification/build/dataflow.js?size=224&size=224"
104
+ " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/image-classification/build/dataflow.js?size=224&size=224"
105
105
]
106
106
}
107
107
```
@@ -112,7 +112,7 @@ The image classification pipeline supports both MobileNet and ResNet models. The
112
112
113
113
``` json
114
114
{
115
- "model" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/image-classification/build/model.js?modelUrl=resnet" ,
115
+ "model" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/image-classification/build/model.js?modelUrl=resnet" ,
116
116
}
117
117
```
118
118
@@ -140,15 +140,15 @@ Object Detection pipeline supports [PascalVoc](../../docs/spec/dataset.md) and [
140
140
141
141
``` json
142
142
{
143
- "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/object-detection-yolo/build/datasource.js?format=pascalvoc&url=https://host/dataset.zip"
143
+ "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/object-detection-yolo/build/datasource.js?format=pascalvoc&url=https://host/dataset.zip"
144
144
}
145
145
```
146
146
147
147
You can specify the ` url ` as a local folder path:
148
148
149
149
``` json
150
150
{
151
- "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/object-detection-yolo/build/datasource.js?format=pascalvoc&url=file:///path/to/dataset-directory"
151
+ "datasource" : " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/object-detection-yolo/build/datasource.js?format=pascalvoc&url=file:///path/to/dataset-directory"
152
152
}
153
153
```
154
154
@@ -158,7 +158,7 @@ As with the image classification pipeline, YOLO requires that the dimension (wid
158
158
``` json
159
159
{
160
160
"dataflow" : [
161
- " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@59d3e2f /scripts/object-detection-yolo/build/dataflow.js?size=416&size=416"
161
+ " https://cdn.jsdelivr.net/gh/imgcook/pipcook-script@9d210de /scripts/object-detection-yolo/build/dataflow.js?size=416&size=416"
162
162
]
163
163
}
164
164
```
0 commit comments