Skip to content

Commit cf63a7f

Browse files
authored
Merge pull request #3636 from kaingwade:ml_to_contrib
Move ml to opencv_contrib #3636 Main PR: opencv/opencv#25017
1 parent c5d22dd commit cf63a7f

File tree

101 files changed

+23882
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+23882
-0
lines changed

modules/ml/CMakeLists.txt

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
set(the_description "Machine Learning")
2+
3+
ocv_add_module(ml opencv_core WRAP java objc python)
4+
ocv_glob_module_sources()
5+
ocv_module_include_directories()
6+
ocv_create_module()
7+
8+
ocv_add_accuracy_tests()
9+
ocv_add_perf_tests()
10+
ocv_add_samples(opencv_imgproc opencv_objdetect opencv_video)

modules/ml/doc/ml.bib

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
@inproceedings{RPROP93,
2+
author = {Riedmiller, Martin and Braun, Heinrich},
3+
title = {A direct adaptive method for faster backpropagation learning: The RPROP algorithm},
4+
booktitle = {Neural Networks, 1993., IEEE International Conference on},
5+
year = {1993},
6+
pages = {586--591},
7+
publisher = {IEEE}
8+
}
9+
@article{Kirkpatrick83,
10+
author = {Kirkpatrick, S. and Gelatt, C. D. Jr and Vecchi, M. P.},
11+
title = {Optimization by Simulated Annealing},
12+
year = {1983},
13+
pages = {671--680},
14+
journal = {Science},
15+
volume = {220},
16+
number = {4598},
17+
publisher = {American Association for the Advancement of Science},
18+
url = {http://sci2s.ugr.es/sites/default/files/files/Teaching/GraduatesCourses/Metaheuristicas/Bibliography/1983-Science-Kirkpatrick-sim_anneal.pdf}
19+
}
20+
@incollection{bottou2010large,
21+
title = {Large-scale machine learning with stochastic gradient descent},
22+
author = {Bottou, L{\'e}on},
23+
booktitle = {Proceedings of COMPSTAT'2010},
24+
pages = {177--186},
25+
year = {2010},
26+
publisher = {Springer}
27+
}
28+
@article{LibSVM,
29+
author = {Chang, Chih-Chung and Lin, Chih-Jen},
30+
title = {LIBSVM: a library for support vector machines},
31+
year = {2011},
32+
pages = {27},
33+
journal = {ACM Transactions on Intelligent Systems and Technology (TIST)},
34+
volume = {2},
35+
number = {3},
36+
publisher = {ACM}
37+
}
38+
@book{Breiman84,
39+
title = {Classification and regression trees},
40+
author = {Breiman, Leo and Friedman, Jerome and Stone, Charles J and Olshen, Richard A},
41+
year = {1984},
42+
publisher = {CRC press},
43+
url = {https://projecteuclid.org/download/pdf_1/euclid.aos/1016218223}
44+
}
45+
@article{HTF01,
46+
author = {Trevor, Hastie and Robert, Tibshirani and Jerome, Friedman},
47+
title = {The elements of statistical learning: data mining, inference and prediction},
48+
year = {2001},
49+
pages = {371--406},
50+
journal = {New York: Springer-Verlag},
51+
volume = {1},
52+
number = {8},
53+
url = {http://www.stat.auckland.ac.nz/~yee/784/files/ch09AdditiveModelsTrees.pdf}
54+
}
55+
@article{FHT98,
56+
author = {Friedman, Jerome and Hastie, Trevor and Tibshirani, Robert},
57+
title = {Additive Logistic Regression: a Statistical View of Boosting},
58+
year = {1998},
59+
url = {https://projecteuclid.org/download/pdf_1/euclid.aos/1016218223}
60+
}

modules/ml/doc/ml_intro.markdown

+481
Large diffs are not rendered by default.
92 KB
Loading

modules/ml/doc/pics/mlp.png

11.1 KB
Loading

modules/ml/doc/pics/neuron_model.png

9.77 KB
Loading
6.98 KB
Loading

0 commit comments

Comments
 (0)