Skip to content

Commit 0714b4d

Browse files
authored
Update README.md
1 parent 8ba105b commit 0714b4d

File tree

1 file changed

+11
-17
lines changed

1 file changed

+11
-17
lines changed

README.md

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
<p align="center">
2-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-3D.png">
2+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/demo_.png">
33
</p>
44

5-
6-
<p align="center">
7-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/demo-3.png">
8-
</p>
9-
10-
115
<h3 align="center">Support Vector Data Description (SVDD)</h3>
126

137
<p align="center">MATLAB Code for abnormal detection or fault detection using SVDD</p>
@@ -60,8 +54,8 @@ A class named ***DataSet*** is defined to generate and partition the 2D or 3D ba
6054
[trainData, trainLabel, testData, testLabel] = DataSet.partition(data, label, 'type', 'hybrid');
6155
```
6256
<p align="center">
63-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/banana-2D.png">
64-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/banana-3D.png">
57+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/banana-2D_.png">
58+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/banana-3D_.png">
6559
</p>
6660

6761
### 02. Kernel funcions
@@ -190,7 +184,7 @@ svplot = SvddVisualization();
190184
svplot.ROC(svdd);
191185
```
192186
<p align="center">
193-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/ROC-3D.png">
187+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/ROC-3D_.png">
194188
</p>
195189

196190
The decision boundaries (only supported for 2D/3D dataset) are
@@ -200,28 +194,28 @@ svplot = SvddVisualization();
200194
svplot.boundary(svdd);
201195
```
202196
<p align="center">
203-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-2D.png">
197+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-2D_.png">
204198
</p>
205199

206200
<p align="center">
207-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-3D.png">
201+
<img src="https://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-3D_.png">
208202
</p>
209203

210204
The distance between the test data and the hypersphere is
211205
```
212206
svplot.distance(svdd, results);
213207
```
214208
<p align="center">
215-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/distance-3D.png">
209+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/distance-3D_.png">
216210
</p>
217211

218212
For the test results, the test data and decision boundary (only supported for 2D/3D dataset) are
219213
```
220214
svplot.testDataWithBoundary(svdd, results);
221215
```
222216
<p align="center">
223-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-tets-2D.png">
224-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-tets-3D.png">
217+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-tets-2D_.png">
218+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/boundary-tets-3D_.png">
225219
</p>
226220

227221
### 05. Parameter Optimization
@@ -247,8 +241,8 @@ svddParameter = struct('cost', cost,...
247241

248242
The visualization of parameter optimization is
249243
<p align="center">
250-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/bayesopt.png">
251-
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/bayesopt-1.png">
244+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/bayesopt_1_.png">
245+
<img src="http://github-files-qiu.oss-cn-beijing.aliyuncs.com/SVDD-MATLAB/bayesopt_2_.png">
252246
</p>
253247

254248
**Notice**

0 commit comments

Comments
 (0)