corefiles.cmake 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. SET(nice_gp-hik-core_SRC
  2. ./GMHIKernel.cpp
  3. ./IKMNoise.cpp
  4. ./kernels/IntersectionKernelFunction.cpp
  5. ./FastMinKernel.cpp
  6. ./GPHIKClassifier.cpp
  7. ./FMKGPHyperparameterOptimization.cpp
  8. ./Quantization.cpp
  9. ./VectorSorter.cpp
  10. ./algebra/LogDetApproxBaiAndGolub.cpp
  11. ./IKMLinearCombination.cpp
  12. ./GPLikelihoodApprox.cpp
  13. ./ImplicitKernelMatrix.cpp
  14. ./parameterizedFunctions/ParameterizedFunction.cpp
  15. )
  16. SET(nice_gp-hik-core_HDR
  17. ./kernels/GeneralizedIntersectionKernelFunction.h
  18. ./kernels/IntersectionKernelFunction.h
  19. ./kernels/GenericKernelFunction.h
  20. ./IKMNoise.h
  21. ./FeatureMatrixT.h
  22. ./GPHIKClassifier.h
  23. ./ImplicitKernelMatrix.h
  24. ./FMKGPHyperparameterOptimization.h
  25. ./FastMinKernel.h
  26. ./SortedVectorSparse.h
  27. ./Quantization.h
  28. ./tools.h
  29. ./algebra/LogDetApproxBaiAndGolub.h
  30. ./algebra/LogDetApprox.h
  31. ./VectorSorter.h
  32. ./GPLikelihoodApprox.h
  33. ./GMHIKernel.h
  34. ./IKMLinearCombination.h
  35. ./parameterizedFunctions/ParameterizedFunction.h
  36. ./parameterizedFunctions/PFExp.h
  37. ./parameterizedFunctions/PFMKL.h
  38. ./parameterizedFunctions/PFAbsExp.h
  39. ./parameterizedFunctions/PFWeightedDim.h
  40. ./OnlineLearnable.h
  41. )