README 2.1 KB

1234567891011121314151617181920212223242526272829303132
  1. (1) 'Installing everything'
  2. This package is self-contained and independent from other external sources. You only need to add the path accordingly:
  3. Setup path: initWorkspaceGPMulticlass
  4. (2) GP models
  5. Get to know GP models on a simple 1D example: multiclass_gp_1D_example
  6. (3) Incremental learning
  7. Compare efficient incremental learning and training from scratch: evaluateIncrementalLearning
  8. What should you expect:
  9. - figure 1: computation times for model updates while adding several samples are displayed. The blue line (efficient updates)
  10. should be below the red one (learning from scratch). Results are averaged over several runs
  11. - figure 2: accuracies obtained while incrementall increasing the training set. Both curves should be identical - if not, something
  12. went wrong within the process of model updates. Since the toy example only uses artificial data, the accuracy curve is not
  13. expected to look super fancy
  14. NOTE:
  15. The technique for incrementally update GP models updates 'the whole model', although for classification, only alpha actually matters. Therefore, if you are only interested
  16. in classifying samples irrespective of their predictive variance, you might want to use more sophisticated tricks for updating
  17. the alpha vector only, which can be found exemplarily in
  18. Alexander Freytag and Erik Rodner and Paul Bodesheim and Joachim Denzler:
  19. "Labeling examples that matter: Relevance-Based Active Learning with Gaussian Processes".
  20. Proceedings of the German Conference on Pattern Recognition (GCPR), 2013.
  21. If you should be further interested in GP equipped with histogram intersection kernels, you might want to use our GPHIK implementations instead, which avoid
  22. explicit covariance construction and are algorithmically much more efficient (eg O(n logn) in training compared to O(n^3) ). Refer to the following source for further details
  23. Erik Rodner and Alexander Freytag and Paul Bodesheim and Joachim Denzler:
  24. " Large-Scale Gaussian Process Classification with Flexible Adaptive Histogram Kernels".
  25. Proceedings of the European Conference on Computer Vision (ECCV), 2012.