1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444
|
## Arbitrary functions
The least restrictive type of function that can be implemented in ensmallen is
a function for which only the objective can be evaluated. For this, a class
with the following API must be implemented:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
class ArbitraryFunctionType
{
public:
// This should return f(x).
double Evaluate(const arma::mat& x);
};
```
</details>
For this type of function, we assume that the gradient `f'(x)` is not
computable. If it is, see [differentiable functions](#differentiable-functions).
The `Evaluate()` method is allowed to have additional cv-modifiers (`static`,
`const`, etc.).
The following optimizers can be used to optimize an arbitrary function:
- [Simulated Annealing](#simulated-annealing-sa)
- [CNE](#cne)
- [DE](#de)
- [PSO](#pso)
- [SPSA](#simultaneous-perturbation-stochastic-approximation-spsa)
Each of these optimizers has an `Optimize()` function that is called as
`Optimize(f, x)` where `f` is the function to be optimized (which implements
`Evaluate()`) and `x` holds the initial point of the optimization. After
`Optimize()` is called, `x` will hold the final result of the optimization
(that is, the best `x` found that minimizes `f(x)`).
#### Example: squared function optimization
An example program that implements the objective function f(x) = 2 |x|^2 is
shown below, using the simulated annealing optimizer.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
class SquaredFunction
{
public:
// This returns f(x) = 2 |x|^2.
double Evaluate(const arma::mat& x)
{
return 2 * std::pow(arma::norm(x), 2.0);
}
};
int main()
{
// The minimum is at x = [0 0 0]. Our initial point is chosen to be
// [1.0, -1.0, 1.0].
arma::mat x("1.0 -1.0 1.0");
// Create simulated annealing optimizer with default options.
// The ens::SA<> type can be replaced with any suitable ensmallen optimizer
// that is able to handle arbitrary functions.
ens::SA<> optimizer;
SquaredFunction f; // Create function to be optimized.
optimizer.Optimize(f, x);
std::cout << "Minimum of squared function found with simulated annealing is "
<< x;
}
```
</details>
## Differentiable functions
Probably the most common type of function that can be optimized with ensmallen
is a differentiable function, where both f(x) and f'(x) can be calculated. To
optimize a differentiable function with ensmallen, a class must be implemented
that follows the API below:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
class DifferentiableFunctionType
{
public:
// Given parameters x, return the value of f(x).
double Evaluate(const arma::mat& x);
// Given parameters x and a matrix g, store f'(x) in the provided matrix g.
// g should have the same size (rows, columns) as x.
void Gradient(const arma::mat& x, arma::mat& gradient);
// OPTIONAL: this may be implemented in addition to---or instead
// of---Evaluate() and Gradient(). If this is the only function implemented,
// implementations of Evaluate() and Gradient() will be automatically
// generated using template metaprogramming. Often, implementing
// EvaluateWithGradient() can result in more efficient optimizations.
//
// Given parameters x and a matrix g, return the value of f(x) and store
// f'(x) in the provided matrix g. g should have the same size (rows,
// columns) as x.
double EvaluateWithGradient(const arma::mat& x, arma::mat& g);
};
```
</details>
Note that you may implement *either* `Evaluate()` and `Gradient()` *or*
`EvaluateWithGradient()`, but it is not mandatory to implement both. (Of
course, supplying both is okay too.) It often results in faster code when
`EvaluateWithGradient()` is implemented, especially for functions where f(x)
and f'(x) compute some of the same intermediate quantities.
Each of the implemented methods is allowed to have additional cv-modifiers
(`static`, `const`, etc.).
The following optimizers can be used with differentiable functions:
* [L-BFGS](#l-bfgs) (`ens::L_BFGS`)
* [Forward-backward splitting (FBS)](#forward-backward-splitting-fbs) (`ens::FBS`)
* [Fast Iterative Shrinkage-Thresholding Algorithm (FISTA)](#fast-iterative-shrinkage-thresholding-algorithm-fista) (`ens::FISTA`)
* [Fast Adaptive Shrinkage/Thresholding Algorithm (FASTA)](#fast-adaptive-shrinkage-thresholding-algorithm-fasta) (`ens::FASTA`)
* [FrankWolfe](#frank-wolfe) (`ens::FrankWolfe`)
* [GradientDescent](#gradient-descent) (`ens::GradientDescent`)
* [DeltaBarDelta](#deltabardelta) (`ens::DeltaBarDelta`)
* [MomentumDeltaBarDelta](#momentum-deltabardelta) (`ens::MomentumDeltaBarDelta`)
- Any optimizer for [arbitrary functions](#arbitrary-functions)
Each of these optimizers has an `Optimize()` function that is called as
`Optimize(f, x)` where `f` is the function to be optimized and `x` holds the
initial point of the optimization. After `Optimize()` is called, `x` will hold
the final result of the optimization (that is, the best `x` found that
minimizes `f(x)`).
An example program is shown below. In this program, we optimize a linear
regression model. In this setting, we have some matrix `data` of data points
that we've observed, and some vector `responses` of the observed responses to
this data. In our model, we assume that each response is the result of a
weighted linear combination of the data:
$$ \operatorname{responses}_i = x * \operatorname{data}_i $$
where $x$ is a vector of parameters. This gives the objective function $f(x) =
(\operatorname{responses} - x'\operatorname{data})^2$.
In the example program, we optimize this objective function and compare the
runtime of an implementation that uses `Evaluate()` and `Gradient()`, and the
runtime of an implementation that uses `EvaluateWithGradient()`.
<details>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
// Define a differentiable objective function by implementing both Evaluate()
// and Gradient() separately.
class LinearRegressionFunction
{
public:
// Construct the object with the given data matrix and responses.
LinearRegressionFunction(const arma::mat& dataIn,
const arma::rowvec& responsesIn) :
data(dataIn), responses(responsesIn) { }
// Return the objective function for model parameters x.
double Evaluate(const arma::mat& x)
{
return std::pow(arma::norm(responses - x.t() * data), 2.0);
}
// Compute the gradient for model parameters x.
void Gradient(const arma::mat& x, arma::mat& g)
{
g = -2 * data * (responses - x.t() * data);
}
private:
// The data.
const arma::mat& data;
// The responses to each data point.
const arma::rowvec& responses;
};
// Define the same function, but only implement EvaluateWithGradient().
class LinearRegressionEWGFunction
{
public:
// Construct the object with the given data matrix and responses.
LinearRegressionEWGFunction(const arma::mat& dataIn,
const arma::rowvec& responsesIn) :
data(dataIn), responses(responsesIn) { }
// Simultaneously compute both the objective function and gradient for model
// parameters x. Note that this is faster than implementing Evaluate() and
// Gradient() individually because it caches the computation of
// (responses - x.t() * data)!
double EvaluateWithGradient(const arma::mat& x, arma::mat& g)
{
const arma::rowvec v = (responses - x.t() * data);
g = -2 * data * v;
return arma::accu(v % v); // equivalent to \| v \|^2
}
private:
// The data.
const arma::mat& data;
// The responses to each data point.
const arma::rowvec& responses;
};
int main()
{
// We'll run a simple speed comparison between both objective functions.
// First, generate some random data, with 10000 points and 10 dimensions.
// This data has no pattern and as such will make a model that's not very
// useful---but the purpose here is just demonstration. :)
//
// For a more "real world" situation, load a dataset from file using X.load()
// and y.load() (but make sure the matrix is column-major, so that each
// observation/data point corresponds to a *column*, *not* a row.
arma::mat data(10, 10000, arma::fill::randn);
arma::rowvec responses(10000, arma::fill::randn);
// Create a starting point for our optimization randomly. The model has 10
// parameters, so the shape is 10x1.
arma::mat startingPoint(10, 1, arma::fill::randn);
// We'll use Armadillo's wall_clock class to do a timing comparison.
arma::wall_clock clock;
// Construct the first objective function.
LinearRegressionFunction lrf1(data, responses);
arma::mat lrf1Params(startingPoint);
// Create the L_BFGS optimizer with default parameters.
// The ens::L_BFGS type can be replaced with any ensmallen optimizer that can
// handle differentiable functions.
ens::L_BFGS lbfgs;
// Time how long L-BFGS takes for the first Evaluate() and Gradient()
// objective function.
clock.tic();
lbfgs.Optimize(lrf1, lrf1Params);
const double time1 = clock.toc();
std::cout << "LinearRegressionFunction with Evaluate() and Gradient() took "
<< time1 << " seconds to converge to the model: " << std::endl;
std::cout << lrf1Params.t();
// Create the second objective function, which uses EvaluateWithGradient().
LinearRegressionEWGFunction lrf2(data, responses);
arma::mat lrf2Params(startingPoint);
// Time how long L-BFGS takes for the EvaluateWithGradient() objective
// function.
clock.tic();
lbfgs.Optimize(lrf2, lrf2Params);
const double time2 = clock.toc();
std::cout << "LinearRegressionEWGFunction with EvaluateWithGradient() took "
<< time2 << " seconds to converge to the model: " << std::endl;
std::cout << lrf2Params.t();
// When this runs, the output parameters will be exactly on the same, but the
// LinearRegressionEWGFunction will run more quickly!
}
```
</details>
### Proximal operators and non-differentiable functions
Some optimization problems involve non-differentiable components, and can be
expressed as the optimization below:
$$ \operatorname{argmin}_x h(x) = \operatorname{argmin}_x f(x) + g(x). $$
Here, `f(x)` is a regular differentiable function (as in the previous
subsection), and `g(x)` is a non-differentiable arbitrary function. These
classes of functions can still be optimized using *proximal gradient
optimizers*. The following proximal gradient optimizers are implemented in
ensmallen (these can also optimize differentiable functions only, taking `g(x) =
0`):
* [Forward-backward splitting (FBS)](#forward-backward-splitting-fbs) (`ens::FBS`)
* [Fast Iterative Shrinkage-Thresholding Algorithm (FISTA)](#fast-iteartive-shrinkage-thresholding-algorithm-fista) (`ens::FISTA`)
* [Fast Adaptive Shrinkage/Thresholding Algorithm (FASTA)](#fast-adaptive-shrinkage-thresholding-algorithm-fasta) (`ens::FASTA`)
ensmallen implements a few `g(x)` options that can be used with proximal
gradient optimizers:
* `L1Penalty(`_`lambda`_`)`: $g(x) = \lambda \| x \|_1$
* `L1Constraint(`_`lambda`_`)`: $g(x)$ is the constraint $\| x \|_1 \le \lambda$
For example, by pairing `L1Penalty` with the `LinearRegressionFunction` from the
previous section, we can implement L1-penalized (sparse) linear regression:
<details>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
// Define a differentiable objective function by implementing only
// EvaluateWithGradient().
class LinearRegressionEWGFunction
{
public:
// Construct the object with the given data matrix and responses.
LinearRegressionEWGFunction(const arma::mat& dataIn,
const arma::rowvec& responsesIn) :
data(dataIn), responses(responsesIn) { }
// Simultaneously compute both the objective function and gradient for model
// parameters x. Note that this is faster than implementing Evaluate() and
// Gradient() individually because it caches the computation of
// (responses - x.t() * data)!
double EvaluateWithGradient(const arma::mat& x, arma::mat& g)
{
const arma::rowvec v = (responses - x.t() * data);
g = -2 * data * v;
return arma::accu(v % v); // equivalent to \| v \|^2
}
private:
// The data.
const arma::mat& data;
// The responses to each data point.
const arma::rowvec& responses;
};
int main()
{
// First, generate some random data, with 1000 points and 500 dimensions.
// This data has no pattern and as such will make a model that's not very
// useful---but the purpose here is just demonstration. :)
//
// For a more "real world" situation, load a dataset from file using X.load()
// and y.load() (but make sure the matrix is column-major, so that each
// observation/data point corresponds to a *column*, *not* a row.
arma::mat data(500, 1000, arma::fill::randn);
arma::rowvec responses(1000, arma::fill::randn);
// Create a starting point for our optimization as the vector of all zeros.
// The model has 500 parameters, so the shape is 500x1.
arma::mat startingPoint(500, 1, arma::fill::zeros);
// Construct the objective function f(x), and the penalty function g(x) with a
// lambda value of 0.1.
LinearRegressionEWGFunction lrf(data, responses);
ens::L1Penalty g(0.1);
// Create the FBS optimizer with default parameters, and optimize the function
// f(x) + g(x) (i.e. L1-penalized linear regression).
// The ens::FBS class can be replaced with any ensmallen proximal gradient
// optimizer.
ens::FBS fbs(g);
arma::mat lrfParams(startingPoint);
fbs.Optimize(lrf, lrfParams);
// Count the number of nonzeros in the final model.
// To get fewer nonzeros, the penalty value (0.1) could be increased.
std::cout << "Number of nonzeros in optimized parameter vector: "
<< arma::accu(lrfParams != 0) << "." << std::endl;
}
```
</details>
It is possible to implement a custom proximal operator (`g(x)`). To do so, a
class with two methods (`Evaluate()` and `BackwardStep()`) must be defined:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
// Compute the value of g(x).
double Evaluate(const arma::mat& x);
// Perform a backward step (proximal step) on `x`, given that the forward step
// size was `stepSize`.
void BackwardStep(arma::mat& x, const double stepSize);
```
</details>
A simple implementation is below for the `L1Penalty` class:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
double L1Penalty::Evaluate(const arma::mat& coordinates) const
{
// Compute the L1 penalty.
return norm(vectorise(coordinates), 1) * lambda;
}
void L1Penalty::ProximalStep(arma::mat& coordinates,
const double stepSize) const
{
// Apply the backwards step coordinate-wise.
// (See Goldstein, Studer, and Baraniuk 2009, eq. (12).)
coordinates.transform([this, stepSize](double val) { return (val > 0.0) ?
(std::max(0.0, val - lambda * stepSize)) :
(std::min(0.0, val + lambda * stepSize)); });
}
```
</details>
### Partially differentiable functions
Some differentiable functions have the additional property that the gradient
`f'(x)` can be decomposed along a different axis `j` such that the gradient is
sparse. This makes the most sense in machine learning applications where the
function `f(x)` is being optimized for some dataset `data`, which has `d`
dimensions. A partially differentiable separable function is partially
differentiable with respect to each dimension `j` of `data`. This property is
useful for coordinate descent type algorithms.
To use ensmallen optimizers to minimize these types of functions, only two
functions needs to be added to the differentiable function type:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
// Compute the partial gradient f'_j(x) with respect to data coordinate j and
// store it in the sparse matrix g.
void Gradient(const arma::mat& x, const size_t j, arma::sp_mat& g);
// Get the number of features that f(x) can be partially differentiated with.
size_t NumFeatures();
```
</details>
**Note**: many partially differentiable function optimizers do not require a
regular implementation of the `Gradient()`, so that function may be omitted.
If these functions are implemented, the following partially differentiable
function optimizers can be used:
- [Coordinate Descent](#coordinate-descent-cd)
## Arbitrary separable functions
Often, an objective function `f(x)` may be represented as the sum of many
functions:
```
f(x) = f_0(x) + f_1(x) + ... + f_N(x).
```
In this function type, we assume the gradient `f'(x)` is not computable. If it
is, see [differentiable separable functions](#differentiable-separable-functions).
For machine learning tasks, the objective function may be, e.g., the sum of a
function taken across many data points. Implementing an arbitrary separable
function type in ensmallen is similar to implementing an arbitrary objective
function, but with a few extra utility methods:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
class ArbitrarySeparableFunctionType
{
public:
// Given parameters x, return the sum of the individual functions
// f_i(x) + ... + f_{i + batchSize - 1}(x). i will always be greater than 0,
// and i + batchSize will be less than or equal to the value of NumFunctions().
double Evaluate(const arma::mat& x, const size_t i, const size_t batchSize);
// Shuffle the ordering of the functions f_i(x).
// (For machine learning problems, this would be equivalent to shuffling the
// data points, e.g., before an epoch of learning.)
void Shuffle();
// Get the number of functions f_i(x).
// (For machine learning problems, this is often just the number of points in
// the dataset.)
size_t NumFunctions();
};
```
</details>
Each of the implemented methods is allowed to have additional cv-modifiers
(`static`, `const`, etc.).
The following optimizers can be used with arbitrary separable functions:
- [Active CMA-ES](#active-cma-es)
- [BIPOP CMA-ES](#bipop-cma-es)
- [CMA-ES](#cma-es)
- [IPOP CMA-ES](#ipop-cma-es)
Each of these optimizers has an `Optimize()` function that is called as
`Optimize(f, x)` where `f` is the function to be optimized and `x` holds the
initial point of the optimization. After `Optimize()` is called, `x` will hold
the final result of the optimization (that is, the best `x` found that
minimizes `f(x)`).
**Note**: using an arbitrary non-separable function optimizer will call
`Evaluate(x, 0, NumFunctions() - 1)`; if this is a very computationally
intensive operation for your objective function, it may be best to avoid using
a non-separable arbitrary function optimizer.
**Note**: if possible, it's often better to try and use a gradient-based
approach. See [differentiable separable functions](#differentiable-separable-functions)
for separable f(x) where the gradient f'(x) can be computed.
The example program below demonstrates the implementation and use of an
arbitrary separable function. The function used is the linear regression
objective function, described in [differentiable functions](#example-linear-regression).
Given some dataset `data` and responses `responses`, the linear regression
objective function is separable as
$$ f_i(x) = (\operatorname{responses}(i) - x' * \operatorname{data}(i))^2 $$
where $\operatorname{data}(i)$ represents the data point indexed by $i$ and
$\operatorname{responses}(i)$ represents the observed response indexed by $i$.
<details>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
// This class implements the linear regression objective function as an
// arbitrary separable function type.
class LinearRegressionFunction
{
public:
// Create the linear regression function with the given data and the given
// responses.
LinearRegressionFunction(const arma::mat& dataIn,
const arma::rowvec& responsesIn) :
data(data), responses(responses) { }
// Given parameters x, compute the sum of the separable objective
// functions starting with f_i(x) and ending with
// f_{i + batchSize - 1}(x).
double Evaluate(const arma::mat& x, const size_t i, const size_t batchSize)
{
// A more complex implementation could avoid the for loop and use
// submatrices, but it is easier to understand when implemented this way.
double objective = 0.0;
for (size_t j = i; j < i + batchSize; ++j)
{
objective += std::pow(responses[j] - x.t() * data.col(j), 2.0);
}
}
// Shuffle the ordering of the functions f_i(x). We do this by simply
// shuffling the data and responses.
void Shuffle()
{
// Generate a random ordering of data points.
arma::uvec ordering = arma::shuffle(
arma::linspace<arma::uvec>(0, data.n_cols - 1, data.n_cols));
// This reorders the data and responses with our randomly-generated
// ordering above.
data = data.cols(ordering);
responses = responses.cols(ordering);
}
// Return the number of functions f_i(x). In our case this is simply the
// number of data points.
size_t NumFunctions() { return data.n_cols; }
};
int main()
{
// First, generate some random data, with 10000 points and 10 dimensions.
// This data has no pattern and as such will make a model that's not very
// useful---but the purpose here is just demonstration. :)
//
// For a more "real world" situation, load a dataset from file using X.load()
// and y.load() (but make sure the matrix is column-major, so that each
// observation/data point corresponds to a *column*, *not* a row.
arma::mat data(10, 10000, arma::fill::randn);
arma::rowvec responses(10000, arma::fill::randn);
// Create a starting point for our optimization randomly. The model has 10
// parameters, so the shape is 10x1.
arma::mat params(10, 1, arma::fill::randn);
// Use the CMA-ES optimizer with default parameters to minimize the
// LinearRegressionFunction.
// The ens::CMAES type can be replaced with any suitable ensmallen optimizer
// that can handle arbitrary separable functions.
ens::CMAES cmaes;
LinearRegressionFunction lrf(data, responses);
cmaes.Optimize(lrf, params);
std::cout << "The optimized linear regression model found by CMA-ES has the "
<< "parameters " << params.t();
}
```
</details>
## Differentiable separable functions
Likely the most important type of function to be optimized in machine learning
and some other fields is the differentiable separable function. A
differentiable separable function f(x) can be represented as the sum of many
functions:
```
f(x) = f_0(x) + f_1(x) + ... + f_N(x).
```
And it also has a computable separable gradient `f'(x)`:
```
f'(x) = f'_0(x) + f'_1(x) + ... + f'_N(x).
```
For machine learning tasks, the objective function may be, e.g., the sum of a
function taken across many data points. Implementing a differentiable
separable function type in ensmallen is similar to implementing an ordinary
differentiable function, but with a few extra utility methods:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
class ArbitrarySeparableFunctionType
{
public:
// Given parameters x, return the sum of the individual functions
// f_i(x) + ... + f_{i + batchSize - 1}(x). i will always be greater than 0,
// and i + batchSize will be less than or equal to the value of NumFunctions().
double Evaluate(const arma::mat& x, const size_t i, const size_t batchSize);
// Given parameters x and a matrix g, store the sum of the gradient of
// individual functions f'_i(x) + ... + f'_{i + batchSize - 1}(x) into g. i
// will always be greater than 0, and i + batchSize will be less than or
// equal to the value of NumFunctions().
void Gradient(const arma::mat& x,
const size_t i,
arma::mat& g,
const size_t batchSize);
// Shuffle the ordering of the functions f_i(x).
// (For machine learning problems, this would be equivalent to shuffling the
// data points, e.g., before an epoch of learning.)
void Shuffle();
// Get the number of functions f_i(x).
// (For machine learning problems, this is often just the number of points in
// the dataset.)
size_t NumFunctions();
// OPTIONAL: this may be implemented in addition to---or instead
// of---Evaluate() and Gradient(). If this is the only function implemented,
// implementations of Evaluate() and Gradient() will be automatically
// generated using template metaprogramming. Often, implementing
// EvaluateWithGradient() can result in more efficient optimizations.
//
// Given parameters x and a matrix g, return the sum of the individual
// functions f_i(x) + ... + f_{i + batchSize - 1}(x), and store the sum of
// the gradient of individual functions f'_i(x) + ... +
// f'_{i + batchSize - 1}(x) into the provided matrix g. g should have the
// same size (rows, columns) as x. i will always be greater than 0, and i +
// batchSize will be less than or equal to the value of NumFunctions().
double EvaluateWithGradient(const arma::mat& x,
const size_t i,
arma::mat& g,
const size_t batchSize);
};
```
</details>
Note that you may implement *either* `Evaluate()` and `Gradient()` *or*
`EvaluateWithGradient()`, but it is not mandatory to implement both. (Of
course, supplying both is okay too.) It often results in faster code when
`EvaluateWithGradient()` is implemented, especially for functions where f(x)
and f'(x) compute some of the same intermediate quantities.
Each of the implemented methods is allowed to have additional cv-modifiers
(`static`, `const`, etc.).
The following optimizers can be used with differentiable separable functions:
- [AdaBelief](#adabelief)
- [AdaBound](#adabound)
- [AdaDelta](#adadelta)
- [AdaGrad](#adagrad)
- [AdaSqrt](#adasqrt)
- [Adam](#adam)
- [AdaMax](#adamax)
- [AMSBound](#amsbound)
- [AMSGrad](#amsgrad)
- [Big Batch SGD](#big-batch-sgd)
- [Eve](#eve)
- [FTML](#ftml-follow-the-moving-leader)
- [IQN](#iqn)
- [Katyusha](#katyusha)
- [Lookahead](#lookahead)
- [Momentum SGD](#momentum-sgd)
- [Nadam](#nadam)
- [NadaMax](#nadamax)
- [NesterovMomentumSGD](#nesterov-momentum-sgd)
- [OptimisticAdam](#optimisticadam)
- [QHAdam](#qhadam)
- [QHSGD](#qhsgd)
- [RMSProp](#rmsprop)
- [SARAH/SARAH+](#stochastic-recursive-gradient-algorithm-sarahsarah)
- [SGD](#standard-sgd)
- [Stochastic Gradient Descent with Restarts (SGDR)](#stochastic-gradient-descent-with-restarts-sgdr)
- [Snapshot SGDR](#snapshot-stochastic-gradient-descent-with-restarts)
- [SMORMS3](#smorms3)
- [SPALeRA](#spalera-stochastic-gradient-descent-spalerasgd)
- [SWATS](#swats)
- [SVRG](#standard-stochastic-variance-reduced-gradient-svrg)
- [WNGrad](#wngrad)
The example program below demonstrates the implementation and use of an
arbitrary separable function. The function used is the linear regression
objective function, described in [differentiable functions](#example-linear-regression).
Given some dataset `data` and responses `responses`, the linear regression
objective function is separable as
```
f_i(x) = (responses(i) - x' * data(i))^2
```
where `data(i)` represents the data point indexed by `i` and `responses(i)`
represents the observed response indexed by `i`. This example implementation
only implements `EvaluateWithGradient()` in order to avoid redundant
calculations.
<details>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
// This class implements the linear regression objective function as an
// arbitrary separable function type.
class LinearRegressionFunction
{
public:
// Create the linear regression function with the given data and the given
// responses.
LinearRegressionFunction(const arma::mat& dataIn,
const arma::rowvec& responsesIn) :
data(data), responses(responses) { }
// Given parameters x, compute the sum of the separable objective
// functions starting with f_i(x) and ending with
// f_{i + batchSize - 1}(x), and also compute the gradient of those functions
// and store them in g.
double EvaluateWithGradient(const arma::mat& x,
const size_t i,
arma::mat& g,
const size_t batchSize)
{
// This slightly complex implementation uses Armadillo submatrices to
// compute the objective functions and gradients simultaneously for
// multiple points.
//
// The shared computation between the objective and gradient is the term
// (response - x * data) so we compute that first, only for points in the
// batch.
const arma::rowvec v = (responses.cols(i, i + batchSize - 1) - x.t() *
data.cols(i, i + batchSize - 1));
g = -2 * data.cols(i, i + batchSize - 1) * v;
return arma::accu(v % v); // equivalent to |v|^2
}
// Shuffle the ordering of the functions f_i(x). We do this by simply
// shuffling the data and responses.
void Shuffle()
{
// Generate a random ordering of data points.
arma::uvec ordering = arma::shuffle(
arma::linspace<arma::uvec>(0, data.n_cols - 1, data.n_cols));
// This reorders the data and responses with our randomly-generated
// ordering above.
data = data.cols(ordering);
responses = responses.cols(ordering);
}
// Return the number of functions f_i(x). In our case this is simply the
// number of data points.
size_t NumFunctions() { return data.n_cols; }
};
int main()
{
// First, generate some random data, with 10000 points and 10 dimensions.
// This data has no pattern and as such will make a model that's not very
// useful---but the purpose here is just demonstration. :)
//
// For a more "real world" situation, load a dataset from file using X.load()
// and y.load() (but make sure the matrix is column-major, so that each
// observation/data point corresponds to a *column*, *not* a row.
arma::mat data(10, 10000, arma::fill::randn);
arma::rowvec responses(10000, arma::fill::randn);
// Create a starting point for our optimization randomly. The model has 10
// parameters, so the shape is 10x1.
arma::mat params(10, 1, arma::fill::randn);
// Use RMSprop to find the best parameters for the linear regression model.
// The type 'ens::RMSprop' can be changed for any ensmallen optimizer able to
// handle differentiable separable functions.
ens::RMSProp rmsprop;
LinearRegressionFunction lrf(data, responses);
rmsprop.Optimize(lrf, params);
std::cout << "The optimized linear regression model found by RMSprop has the"
<< " parameters " << params.t();
}
```
</details>
### Sparse differentiable separable functions
Some differentiable separable functions have the additional property that
the gradient `f'_i(x)` is sparse. When this is true, one additional method can
be implemented as part of the class to be optimized:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
// Add this definition to use sparse differentiable separable function
// optimizers. Given x, store the sum of the sparse gradient f'_i(x) + ... +
// f'_{i + batchSize - 1}(x) into the provided matrix g.
void Gradient(const arma::mat& x,
const size_t i,
arma::sp_mat& g,
const size_t batchSize);
```
</details>
It's also possible to instead use templates to provide only one `Gradient()`
function for both sparse and non-sparse optimizers:
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
// This provides Gradient() for both sparse and non-sparse optimizers.
template<typename GradType>
void Gradient(const arma::mat& x,
const size_t i,
GradType& g,
const size_t batchSize);
```
</details>
If either of these methods are available, then any ensmallen optimizer that
optimizes sparse separable differentiable functions may be used. This
includes:
- [Hogwild!](#hogwild-parallel-sgd) (Parallel SGD)
## Categorical functions
A categorical function is a function f(x) where some of the values of x are
categorical variables (i.e. they take integer values [0, c - 1] and each value
0, 1, ..., c - 1 is unrelated). In this situation, the function is not
differentiable, and so only the objective f(x) can be implemented. Therefore
the class requirements for a categorical function are exactly the same as for
an `ArbitraryFunctionType`---but for any categorical dimension `x_i` in `x`, the
value will be in the range [0, c_i - 1] where `c_i` is the number of categories
in dimension `x_i`.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
class CategoricalFunction
{
public:
// Return the objective function for the given parameters x.
double Evaluate(const arma::mat& x);
};
```
</details>
However, when an optimizer's Optimize() method is called, two additional
parameters must be specified, in addition to the function to optimize and the
matrix holding the parameters:
- `const std::vector<bool>& categoricalDimensions`: a vector of length equal
to the number of elements in `x` (the number of dimensions). If an element
is true, then the dimension is categorical.
- `const arma::Row<size_t>& numCategories`: a vector of length equal to the
number of elements in `x` (the number of dimensions). If a dimension is
categorical, then the corresponding value in `numCategories` should hold the
number of categories in that dimension.
The following optimizers can be used in this way to optimize a categorical function:
- [Grid Search](#grid-search) (all parameters must be categorical)
An example program showing usage of categorical optimization is shown below.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
// An implementation of a simple categorical function. The parameters can be
// understood as x = [c1 c2 c3]. When c1 = 0, c2 = 2, and c3 = 1, the value of
// f(x) is 0. In any other case, the value of f(x) is 10. Therefore, the
// optimum is found at [0, 2, 1].
class SimpleCategoricalFunction
{
public:
// Return the objective function f(x) as described above.
double Evaluate(const arma::mat& x)
{
if (size_t(x[0]) == 0 &&
size_t(x[1]) == 2 &&
size_t(x[2]) == 1)
return 0.0;
else
return 10.0;
}
};
int main()
{
// Create and optimize the categorical function with the GridSearch
// optimizer. We must also create a std::vector<bool> that holds the types
// of each dimension, and an arma::Row<size_t> that holds the number of
// categories in each dimension.
SimpleCategoricalFunction c;
// We have three categorical dimensions only.
std::vector<bool> categoricalDimensions;
categoricalDimensions.push_back(true);
categoricalDimensions.push_back(true);
categoricalDimensions.push_back(true);
// The first category can take 5 values; the second can take 3; the third can
// take 12.
arma::Row<size_t> numCategories("5 3 12");
// The initial point for our optimization will be to set all categories to 0.
arma::mat params("0 0 0");
// Now create the GridSearch optimizer with default parameters, and run the
// optimization.
// The ens::GridSearch type can be replaced with any ensmallen optimizer that
// is able to handle categorical functions.
ens::GridSearch gs;
gs.Optimize(c, params, categoricalDimensions, numCategories);
std::cout << "The ens::GridSearch optimizer found the optimal parameters to "
<< "be " << params;
}
```
</details>
## Multi-objective functions
A multi-objective optimizer does not return just one set of coordinates at the
minimum of all objective functions, but instead finds a *front* or *frontier* of
possible coordinates that are Pareto-optimal (that is, no individual objective
function's value can be reduced without increasing at least one other
objective function).
In order to optimize a multi-objective function with ensmallen, a `std::tuple<>`
containing multiple `ArbitraryFunctionType`s ([see here](#arbitrary-functions))
should be passed to a multi-objective optimizer's `Optimize()` function.
An example below simultaneously optimizes the generalized Rosenbrock function
in 6 dimensions and the Wood function using [NSGA2](#nsga2).
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
GeneralizedRosenbrockFunction rf(6);
WoodFunction wf;
std::tuple<GeneralizedRosenbrockFunction, WoodFunction> objectives(rf, wf);
// Create an initial point (a random point in 6 dimensions).
arma::mat coordinates(6, 1, arma::fill::randu);
// `coordinates` will be set to the coordinates on the best front that minimize the
// sum of objective functions, and `bestFrontSum` will be the sum of all objectives
// at that coordinate set.
NSGA2 nsga;
double bestFrontSum = nsga.Optimize(objectives, coordinates);
// If the entire Pareto front is desired, pass it to the Optimize() function:
arma::cube front, paretoSet;
double bestFrontSum2 = nsga.Optimize(objectives, coordinates, front, paretoSet);
```
</details>
### Performance Indicators
Performance indicators in multiobjective optimization provide essential metrics
for evaluating solution quality, such as convergence to the Pareto front and solution
diversity.
The ensmallen library offers three such indicators, aiding in the assessment and comparison
of different optimization methods:
#### Epsilon
Epsilon metric is a performance metric used in multi-objective optimization which measures
the smallest factor by which a set of solution objectives must be scaled to dominate a
reference set of solutions. Specifically, given a set of Pareto-optimal solutions, the
epsilon indicator finds the minimum value ϵ such that each solution in the set is at
least as good as every solution in the reference set when the objectives are scaled by ϵ.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
arma::cube referenceFront(2, 1, 3);
double tol = 1e-10;
referenceFront.slice(0) = arma::vec{0.01010101, 0.89949622};
referenceFront.slice(1) = arma::vec{0.02020202, 0.85786619};
referenceFront.slice(2) = arma::vec{0.03030303, 0.82592234};
arma::cube front = referenceFront * 1.1;
// eps is approximately 1.1
double eps = Epsilon::Evaluate(front, referenceFront);
```
</details>
#### IGD
Inverse Generational Distance (IGD) is a performance metric used in multi-objective optimization
to evaluate the quality of a set of solutions relative to a reference set, typically representing
the true Pareto front. IGD measures the average distance from each point in the reference set to
the closest point in the obtained solution set.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
arma::cube referenceFront(2, 1, 3);
double tol = 1e-10;
referenceFront.slice(0) = arma::vec{0.01010101, 0.89949622};
referenceFront.slice(1) = arma::vec{0.02020202, 0.85786619};
referenceFront.slice(2) = arma::vec{0.03030303, 0.82592234};
arma::cube front = referenceFront * 1.1;
// The third parameter is the power constant in the distance formula.
// IGD is approximately 0.05329
double igd = IGD::Evaluate(front, referenceFront, 1);
```
</details>
#### IGD Plus
IGD Plus (IGD+) is a variant of the Inverse Generational Distance (IGD) metric used in multi-objective
optimization. It refines the traditional IGD metric by incorporating a preference for Pareto-dominance
in the distance calculation. This modification helps IGD+ better reflect both the convergence to the
Pareto front and the diversity of the solution set.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
arma::cube referenceFront(2, 1, 3);
double tol = 1e-10;
referenceFront.slice(0) = arma::vec{0.01010101, 0.89949622};
referenceFront.slice(1) = arma::vec{0.02020202, 0.85786619};
referenceFront.slice(2) = arma::vec{0.03030303, 0.82592234};
arma::cube front = referenceFront * 1.1;
// IGDPlus is approximately 0.05329
double igdPlus = IGDPlus::Evaluate(front, referenceFront);
```
</details>
*Note*: all multi-objective function optimizers have two versions of
`Optimize()`: one that finds only the best front, and one that also allows
passing `arma::cube`s (or similar) to return the Pareto set (e.g. the Pareto
optimal points in variable space) as well as the entire Pareto front (e.g. all
sets of solutions on the front):
* `Optimize(`_`functions`_`,`_`coordinates`_`)`
* `Optimize(`_`functions`_`,`_`coordinates`_`,`_`paretoSet`_`,`_`paretoFront`_`)`
The following optimizers can be used with multi-objective functions:
- [NSGA2](#nsga2)
- [MOEA/D-DE](#moead)
- [AGEMOEA](#agemoea)
#### See also:
* [Performance Assessment of Multiobjective Optimizers: An Analysis and Review](https://sop.tik.ee.ethz.ch/publicationListFiles/ztlf2003a.pdf)
* [Modified Distance Calculation in Generational Distance and Inverted Generational Distance](https://link.springer.com/chapter/10.1007/978-3-319-15892-1_8)
## Constrained functions
A constrained function is an objective function `f(x)` that is also subject to
some constraints on `x`. (For instance, perhaps a constraint could be that `x`
is a positive semidefinite matrix.) ensmallen is able to handle differentiable
objective functions of this type---so, `f'(x)` must also be computable. Given
some set of constraints `c_0(x)`, ..., `c_M(x)`, we can re-express our constrained
objective function as
```
f_C(x) = f(x) + c_0(x) + ... + c_M(x)
```
where the (soft) constraint `c_i(x)` is a positive value if it is not satisfied, and
`0` if it is satisfied. The soft constraint `c_i(x)` should take some value
representing how far from a feasible solution `x` is. It should be
differentiable, since ensmallen's constrained optimizers will use the gradient
of the constraint to find a feasible solution.
In order to optimize a constrained function with ensmallen, a class
implementing the API below is required.
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
class ConstrainedFunctionType
{
public:
// Return the objective function f(x) for the given x.
double Evaluate(const arma::mat& x);
// Compute the gradient of f(x) for the given x and store the result in g.
void Gradient(const arma::mat& x, arma::mat& g);
// Get the number of constraints on the objective function.
size_t NumConstraints();
// Evaluate constraint i at the parameters x. If the constraint is
// unsatisfied, a value greater than 0 should be returned. If the constraint
// is satisfied, 0 should be returned. The optimizer will add this value to
// its overall objective that it is trying to minimize.
double EvaluateConstraint(const size_t i, const arma::mat& x);
// Evaluate the gradient of constraint i at the parameters x, storing the
// result in the given matrix g. If the constraint is not satisfied, the
// gradient should be set in such a way that the gradient points in the
// direction where the constraint would be satisfied.
void GradientConstraint(const size_t i, const arma::mat& x, arma::mat& g);
};
```
</details>
A constrained function can be optimized with the following optimizers:
- [Augmented Lagrangian](#augmented-lagrangian)
### Semidefinite programs
A special class of constrained function is a semidefinite program. ensmallen
has support for creating and optimizing semidefinite programs via the
`ens::SDP<>` class. For this, the SDP must be expressed in the primal form:
```
min_x dot(C, x) such that
dot(A_i, x) = b_i, for i = 1, ..., M;
x >= 0
```
In this case, `A_i` and `C` are square matrices (sparse or dense), and `b_i` is
a scalar.
Once the problem is expressed in this form, a class of type `ens::SDP<>` can be
created. `SDP<arma::mat>` indicates an SDP with a dense C, and
`SDP<arma::sp_mat>` indicates an SDP with a sparse C. The class has the
following useful methods:
- `SDP(cMatrixSize, numDenseConstraints, numSparseConstraints)`: create a new `SDP`
- `size_t NumSparseConstraints()`: get number of sparse constraint matrices A_i
- `size_t NumDenseConstraints()`: get number of dense constraint matrices A_i
- `std::vector<arma::mat>& DenseA()`: get vector of dense A_i matrices
- `std::vector<arma::sp_mat>& SparseA()`: get vector of sparse A_i matrices
- `arma::vec& DenseB()`: get vector of b_i values for dense A_i constraints
- `arma::vec& SparseB()`: get vector of b_i values for sparse A_i constraints
Once these methods are used to set each A_i matrix and corresponding b_i value,
and C objective matrix, the SDP object can be used with any ensmallen SDP
solver. The list of SDP solvers is below:
- [Primal-dual SDP solver](#primal-dual-sdp-solver)
- [Low-rank accelerated SDP solver (LRSDP)](#lrsdp-low-rank-sdp-solver)
Example code showing how to solve an SDP is given below.
<details>
<summary>Click to collapse/expand example code.
</summary>
```c++
int main()
{
// We will build a toy semidefinite program and then use the PrimalDualSolver to find a solution
// The semi-definite constraint looks like:
//
// [ 1 x_12 x_13 0 0 0 0 ]
// [ 1 x_23 0 0 0 0 ]
// [ 1 0 0 0 0 ]
// [ s1 0 0 0 ] >= 0
// [ s2 0 0 ]
// [ s3 0 ]
// [ s4 ]
// x_11 == 0
arma::sp_mat A0(7, 7); A0.zeros();
A0(0, 0) = 1.;
// x_22 == 0
arma::sp_mat A1(7, 7); A1.zeros();
A1(1, 1) = 1.;
// x_33 == 0
arma::sp_mat A2(7, 7); A2.zeros();
A2(2, 2) = 1.;
// x_12 <= -0.1 <==> x_12 + s1 == -0.1, s1 >= 0
arma::sp_mat A3(7, 7); A3.zeros();
A3(1, 0) = A3(0, 1) = 1.; A3(3, 3) = 2.;
// -0.2 <= x_12 <==> x_12 - s2 == -0.2, s2 >= 0
arma::sp_mat A4(7, 7); A4.zeros();
A4(1, 0) = A4(0, 1) = 1.; A4(4, 4) = -2.;
// x_23 <= 0.5 <==> x_23 + s3 == 0.5, s3 >= 0
arma::sp_mat A5(7, 7); A5.zeros();
A5(2, 1) = A5(1, 2) = 1.; A5(5, 5) = 2.;
// 0.4 <= x_23 <==> x_23 - s4 == 0.4, s4 >= 0
arma::sp_mat A6(7, 7); A6.zeros();
A6(2, 1) = A6(1, 2) = 1.; A6(6, 6) = -2.;
std::vector<arma::sp_mat> ais({A0, A1, A2, A3, A4, A5, A6});
SDP<arma::sp_mat> sdp(7, 7 + 4 + 4 + 4 + 3 + 2 + 1, 0);
for (size_t j = 0; j < 3; j++)
{
// x_j4 == x_j5 == x_j6 == x_j7 == 0
for (size_t i = 0; i < 4; i++)
{
arma::sp_mat A(7, 7); A.zeros();
A(i + 3, j) = A(j, i + 3) = 1;
ais.emplace_back(A);
}
}
// x_45 == x_46 == x_47 == 0
for (size_t i = 0; i < 3; i++)
{
arma::sp_mat A(7, 7); A.zeros();
A(i + 4, 3) = A(3, i + 4) = 1;
ais.emplace_back(A);
}
// x_56 == x_57 == 0
for (size_t i = 0; i < 2; i++)
{
arma::sp_mat A(7, 7); A.zeros();
A(i + 5, 4) = A(4, i + 5) = 1;
ais.emplace_back(A);
}
// x_67 == 0
arma::sp_mat A(7, 7); A.zeros();
A(6, 5) = A(5, 6) = 1;
ais.emplace_back(A);
std::swap(sdp.SparseA(), ais);
sdp.SparseB().zeros();
sdp.SparseB()[0] = sdp.SparseB()[1] = sdp.SparseB()[2] = 1.;
sdp.SparseB()[3] = -0.2; sdp.SparseB()[4] = -0.4;
sdp.SparseB()[5] = 1.; sdp.SparseB()[6] = 0.8;
sdp.C().zeros();
sdp.C()(0, 2) = sdp.C()(2, 0) = 1.;
// That took a long time but we finally set up the problem right! Now we can
// use the PrimalDualSolver to solve it.
// ens::PrimalDualSolver could be replaced with ens::LRSDP or other ensmallen
// SDP solvers.
PrimalDualSolver solver;
arma::mat X, Z;
arma::vec ysparse, ydense;
// ysparse, ydense, and Z hold the primal and dual variables found during the
// optimization.
const double obj = solver.Optimize(sdp, X, ysparse, ydense, Z);
std::cout << "SDP optimized with objective " << obj << "." << std::endl;
}
```
</details>
## Alternate matrix types
All of the examples above (and throughout the rest of the documentation)
generally assume that the matrix being optimized has type `arma::mat`. But
ensmallen's optimizers are capable of optimizing more types than just dense
Armadillo matrices. In fact, the full signature of each optimizer's
`Optimize()` method is this:
```
template<typename FunctionType, typename MatType>
typename MatType::elem_type Optimize(FunctionType& function,
MatType& coordinates);
```
The return type, `typename MatType::elem_type`, is just the numeric type held by
the given matrix type. So, for `arma::mat`, the return type is just `double`.
In addition, optimizers for differentiable functions have a third template
parameter, `GradType`, which specifies the type of the gradient. `GradType` can
be manually specified in the situation where, e.g., a sparse gradient is
desired.
It is easy to write a function to optimize, e.g., an `arma::fmat`. Here is an
example, adapted from the `SquaredFunction` example from the
[arbitrary function documentation](#example__squared_function_optimization).
<details open>
<summary>Click to collapse/expand example code.
</summary>
```c++
#include <ensmallen.hpp>
class SquaredFunction
{
public:
// This returns f(x) = 2 |x|^2.
float Evaluate(const arma::fmat& x)
{
return 2 * std::pow(arma::norm(x), 2.0);
}
void Gradient(const arma::fmat& x, arma::fmat& gradient)
{
gradient = 4 * x;
}
};
int main()
{
// The minimum is at x = [0 0 0]. Our initial point is chosen to be
// [1.0, -1.0, 1.0].
arma::fmat x("1.0 -1.0 1.0");
// Create simulated annealing optimizer with default options.
// The ens::SA<> type can be replaced with any suitable ensmallen optimizer
// that is able to handle arbitrary functions.
ens::L_BFGS optimizer;
SquaredFunction f; // Create function to be optimized.
optimizer.Optimize(f, x); // The optimizer will infer arma::fmat!
std::cout << "Minimum of squared function found with simulated annealing is "
<< x;
}
```
</details>
Note that we have simply changed the `SquaredFunction` to accept `arma::fmat`
instead of `arma::mat` as parameters to `Evaluate()`, and the return type has
accordingly been changed to `float` from `double`. It would even be possible to
optimize functions with sparse coordinates by having `Evaluate()` take a sparse
matrix (i.e. `arma::sp_mat`).
If it were desired to represent the gradient as a sparse type, the `Gradient()`
function would need to be modified to take a sparse matrix (i.e. `arma::sp_mat`
or similar), and then you could call `optimizer.Optimize<SquaredFunction,
arma::mat, arma::sp_mat>(f, x);` to perform the optimization while using sparse
matrix types to represent the gradient. Using sparse `MatType` or `GradType`
should *only* be done when it is known that the objective matrix and/or
gradients will be sparse; otherwise the code may run very slow!
ensmallen will automatically infer `MatType` from the call to `Optimize()`, and
check that the given `FunctionType` has all of the necessary functions for the
given `MatType`, throwing a `static_assert` error if not. If you would like to
disable these checks, define the macro `ENS_DISABLE_TYPE_CHECKS` before
including ensmallen:
```
#define ENS_DISABLE_TYPE_CHECKS
#include <ensmallen.hpp>
```
This can be useful for situations where you know that the checks should be
ignored. However, be aware that the code may fail to compile and give more
confusing and difficult error messages!
|