Searched refs:nbSupportVectors (Results 1 – 11 of 11) sorted by relevance
/cmsis-dsp-latest/Testing/Source/Benchmarks/ |
D | SVMF16.cpp | 52 this->nbSupportVectors = *it++; in setUp() 145 this->intercept=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors]; in setUp() 147 this->dualCoefs=paramsp + (this->vecDim*this->nbSupportVectors); in setUp() 154 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 155 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 156 … this->degree=(int)paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 3]; in setUp() 161 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1]; in setUp() 165 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 166 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 177 this->nbSupportVectors, in setUp() [all …]
|
D | SVMF32.cpp | 52 this->nbSupportVectors = *it++; in setUp() 145 this->intercept=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors]; in setUp() 147 this->dualCoefs=paramsp + (this->vecDim*this->nbSupportVectors); in setUp() 154 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 155 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 156 … this->degree=(int)paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 3]; in setUp() 161 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1]; in setUp() 165 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 166 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 177 this->nbSupportVectors, in setUp() [all …]
|
/cmsis-dsp-latest/Testing/Source/Tests/ |
D | SVMF16.cpp | 158 this->nbSupportVectors = dimsp[5]; in setUp() 159 this->intercept=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors]; in setUp() 161 this->dualCoefs=paramsp + (this->vecDim*this->nbSupportVectors); in setUp() 169 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 170 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 174 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1]; in setUp() 178 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 179 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 191 this->nbSupportVectors, in setUp() 204 this->nbSupportVectors, in setUp() [all …]
|
D | SVMF32.cpp | 157 this->nbSupportVectors = dimsp[5]; in setUp() 158 this->intercept=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors]; in setUp() 160 this->dualCoefs=paramsp + (this->vecDim*this->nbSupportVectors); in setUp() 168 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 169 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 173 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1]; in setUp() 177 … this->coef0 =paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 1] ; in setUp() 178 this->gamma=paramsp[this->vecDim*this->nbSupportVectors + this->nbSupportVectors + 2]; in setUp() 190 this->nbSupportVectors, in setUp() 203 this->nbSupportVectors, in setUp() [all …]
|
/cmsis-dsp-latest/Testing/PatternGeneration/ |
D | SVM.py | 100 nbSupportVectors=supportShape[0] 104 dualCoefs=dualCoefs.reshape(nbSupportVectors) 106 supportVectors = supportVectors.reshape(nbSupportVectors*VECDIM) 109 dims=np.array([kind,theclass[0],theclass[1],NBTESTSAMPLE,VECDIM,nbSupportVectors]) 111 dims=np.array([kind,theclass[0],theclass[1],NBTESTSAMPLE,VECDIM,nbSupportVectors,clf.degree]) 113 dims=np.array([kind,theclass[0],theclass[1],NBTESTSAMPLE,VECDIM,nbSupportVectors]) 115 dims=np.array([kind,theclass[0],theclass[1],NBTESTSAMPLE,VECDIM,nbSupportVectors]) 179 nbSupportVectors=supportShape[0] 183 dualCoefs=dualCoefs.reshape(nbSupportVectors) 185 supportVectors = supportVectors.reshape(nbSupportVectors*vecDim) [all …]
|
/cmsis-dsp-latest/Examples/ARM/arm_svm_example/ |
D | train.py | 64 nbSupportVectors=supportShape[0] variable 67 print("nbSupportVectors = %d" % nbSupportVectors) 76 dualCoefs=dualCoefs.reshape(nbSupportVectors) 78 supportVectors = supportVectors.reshape(nbSupportVectors*VECDIM)
|
/cmsis-dsp-latest/PythonWrapper/examples/ |
D | testdsp6.py | 157 nbSupportVectors = supportShape[0] variable 167 dualCoefs = dualCoefs.reshape(nbSupportVectors) 169 supportVectors = supportVectors.reshape(nbSupportVectors * VECDIM) 174 dsp.arm_svm_polynomial_init_f32(svmInst,nbSupportVectors,vectorDimensions,
|
/cmsis-dsp-latest/Testing/Include/Tests/ |
D | SVMF16.h | 27 int vecDim,nbSupportVectors,nbTestSamples,degree; variable
|
D | SVMF32.h | 27 int vecDim,nbSupportVectors,nbTestSamples,degree; variable
|
/cmsis-dsp-latest/Testing/Include/Benchmarks/ |
D | SVMF16.h | 25 int vecDim,nbSupportVectors,nbTestSamples,degree; variable
|
D | SVMF32.h | 25 int vecDim,nbSupportVectors,nbTestSamples,degree; variable
|