improve ann doc (#3334)

This commit is contained in:
Chetan Pandey
2022-12-06 05:14:34 +01:00
committed by GitHub
parent 3648c408b8
commit 8e28e78408
+2 -2
View File
@@ -13,7 +13,7 @@ mlpack currently implements two easy-to-use forms of neural networks:
## Model API
There are two main neural network classes that are meant to be used as container
for neural network layers that \b mlpack implements; each class is suited to a
for neural network layers that mlpack implements; each class is suited to a
different setting:
- `FFN`: the Feed Forward Network model provides a means to plug layers
@@ -82,7 +82,7 @@ class FNN;
Internally, the `FFN` and `RNN` class keeps an instantiated `OutputLayerType`
class (which can be given in the constructor). This is useful for using
different loss functions like the Negative-Log-Likelihood function or the \c
different loss functions like the Negative-Log-Likelihood function or the
VRClassReward function, which takes an optional score parameter. Therefore, you
can write a non-static `OutputLayerType` class and use it seamlessly in
combination with the `FNN` and `RNN` class. The same applies to the