Changeset 281
- Timestamp:
- Apr 20, 2005, 6:45:02 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile.am
r262 r281 14 14 NNI.cc PCA.cc PolynomialKernelFunction.cc random_singleton.cc \ 15 15 Regression.cc RegressionKernel.cc RegressionKernelBox.cc \ 16 RegressionKernelTriCube.cc \ 16 17 RegressionLinear.cc RegressionLocal.cc RegressionNaive.cc ROC.cc \ 17 18 Score.cc Statistics.cc stl_utility.cc SVD.cc SVM.cc tScore.cc \ … … 28 29 Merge.h NNI.h PCA.h Pearson.h PolynomialKernelFunction.h \ 29 30 random_singleton.h Regression.h RegressionKernel.h \ 30 RegressionKernelBox.h RegressionLinear.h RegressionLocal.h \ 31 RegressionKernelBox.h RegressionKernelTriCube.h RegressionLinear.h \ 32 RegressionLocal.h \ 31 33 RegressionNaive.h ROC.h Score.h Statistics.h stl_utility.h SVD.h \ 32 34 SVM.h tScore.h vector.h WeightedAverager.h WeNNI.h -
trunk/src/RegressionKernel.h
r216 r281 8 8 9 9 /// 10 /// Virtual class for calculating the weights in Local Regression10 /// Virtual class for calculating the weights in RegressionLocal 11 11 /// 12 12 -
trunk/src/RegressionLocal.cc
r280 r281 78 78 gslapi::vector w(nof_points); 79 79 for (size_t j=0; j<y.size(); j++) 80 w(j) = kernel_->weight( (x(j)- (data_[min_index].first+81 80 w(j) = kernel_->weight( (x(j)- (data_[min_index].first + 81 data_[min_index+nof_points-1].first) /2) 82 82 /width ); 83 83 -
trunk/todo.txt
r277 r281 2 2 /// File with items to do. Line should start with class: 3 3 /// 4 RegressionKernelTriCube: Create
Note: See TracChangeset
for help on using the changeset viewer.