From 53aef7f1ac03414035e82172766b816c480a19ed Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 27 Nov 2018 18:29:59 -0500 Subject: [PATCH 1/3] Fix header references. --- doc/function_types.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/function_types.md b/doc/function_types.md index 576ebe098..4ae4b76df 100644 --- a/doc/function_types.md +++ b/doc/function_types.md @@ -36,7 +36,7 @@ An example program that implements the objective function f(x) = 2 |x|^2 is shown below, using the simulated annealing optimizer. ```c++ -#include +#include class SquaredFunction { @@ -135,7 +135,7 @@ runtime of an implementation that uses `Evaluate()` and `Gradient()`, and the runtime of an implementation that uses `EvaluateWithGradient()`. ```c++ -#include +#include // Define a differentiable objective function by implementing both Evaluate() // and Gradient() separately. @@ -348,7 +348,7 @@ where $\operatorname{data}(i)$ represents the data point indexed by $i$ and $\operatorname{responses}(i)$ represents the observed response indexed by $i$. ```c++ -#include +#include // This class implements the linear regression objective function as an // arbitrary separable function type. @@ -541,7 +541,7 @@ only implements `EvaluateWithGradient()` in order to avoid redundant calculations. ```c++ -#include +#include // This class implements the linear regression objective function as an // arbitrary separable function type. @@ -697,7 +697,7 @@ The following optimizers can be used in this way to optimize a categorical funct An example program showing usage of categorical optimization is shown below. ```c++ -#include +#include // 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 From 789cdb270024a04f7e1acaa85145ec08596cb8bb Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 27 Nov 2018 18:31:46 -0500 Subject: [PATCH 2/3] Update history. --- HISTORY.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 86264f01d..27f072db2 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,9 @@ +### ensmallen 1.11.0 +###### ????-??-?? + * Add WNGrad optimizer. + + * Fix header name in documentation samples. + ### ensmallen 1.10.0 ###### 2018-10-20 * Initial release. From f186045c57d6d554a6b748f3a5e7c13d8125134d Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Tue, 27 Nov 2018 18:34:26 -0500 Subject: [PATCH 3/3] Update history for previous release. --- HISTORY.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 27f072db2..ddb8c9077 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,6 +4,12 @@ * Fix header name in documentation samples. +### ensmallen 1.10.1 +###### 2018-11-16 + * Fixes for GridSearch optimizer. + + * Include documentation with release. + ### ensmallen 1.10.0 ###### 2018-10-20 * Initial release.