[5] | 1 | % PR Extra repository |
---|
| 2 | % Version 0.3 6-Jan-2005 |
---|
| 3 | % |
---|
| 4 | %Data generation |
---|
| 5 | %--------------- |
---|
| 6 | %genriver Generate 'bending river'-like 2D test data |
---|
| 7 | %gendati Generate random image windows |
---|
| 8 | % |
---|
| 9 | %Mappings |
---|
| 10 | %-------- |
---|
| 11 | %unitm Fixed unit mapping |
---|
| 12 | %unittm Trainable unit mapping |
---|
| 13 | % |
---|
| 14 | %Classifiers |
---|
| 15 | %----------- |
---|
| 16 | %incsvc Incremental support vector classifier |
---|
| 17 | %gatem Gateway mapping |
---|
| 18 | %emparzenc EM Parzen Classifier for semi-supervised learning |
---|
| 19 | %emc EM algorithm for semi-supervised learning |
---|
| 20 | %linprogc Linear Program Classifier (includes sparse solutions) |
---|
| 21 | %fsellpc Low level routine for linprogc |
---|
| 22 | %lessc Least Error in Sparse Subspaces classifier (David Tax) |
---|
| 23 | %adaboostc Adaboost classifier |
---|
| 24 | %rbsvc Automatic radial basis SVC |
---|
| 25 | % |
---|
| 26 | %auc error under the curve estimator |
---|
| 27 | % |
---|
| 28 | %Image manipulation |
---|
| 29 | %------------------ |
---|
| 30 | %impaint Create and paint an label overlay on an image |
---|
| 31 | %impatch Create and change a polygon label overlay on an image |
---|
| 32 | %neighbh Compute the indices of neighboring pixels |
---|
| 33 | % |
---|
| 34 | %Feature Selection |
---|
| 35 | %----------------- |
---|
| 36 | %featsel2 Pairwise feature selection |
---|
| 37 | % |
---|
| 38 | %ilab: user-defined named identifiers |
---|
| 39 | %------------------------------------ |
---|
| 40 | %enableilab enable named identifiers in a dataset (ilab) |
---|
| 41 | %isvalidilab validity check for named-identifier support in a dataset |
---|
| 42 | %getilablist retrieve list of named identifiers |
---|
| 43 | %addilab add named identifier to a dataset |
---|
| 44 | %getilab retrieve identifier values given identifier names or indices |
---|
| 45 | %setilab set the values for the per-example named-identifiers in a dataset |
---|
| 46 | %removeilab remove named identifier columns |
---|
| 47 | % |
---|
| 48 | % |
---|
| 49 | %meta: named meta data in the dataset user field |
---|
| 50 | %----------------------------------------------- |
---|
| 51 | %enablemeta enable the storage of key-value pairs in a user field |
---|
| 52 | %getmeta retrieve metadata in a dataset by key names |
---|
| 53 | %setmeta add/update key-value pair(s) to a dataset |
---|
| 54 | %removemeta remove key-value pairs |
---|
| 55 | |
---|