| Copyright | (c) Alexander Ignatyev 2017-2018. |
|---|---|
| License | BSD-3 |
| Stability | experimental |
| Portability | POSIX |
| Safe Haskell | None |
| Language | Haskell2010 |
MachineLearning.SoftmaxClassifier
Description
Softmax Classifier (Multiclass Logistic Regression).
Synopsis
- module MachineLearning.Model
- module MachineLearning.Classification.MultiClass
- data SoftmaxClassifier = Softmax Int
Documentation
module MachineLearning.Model
data SoftmaxClassifier #
Softmax Classifier, takes number of classes.
Instances
| Classifier SoftmaxClassifier # | |
Defined in MachineLearning.SoftmaxClassifier Methods cscore :: SoftmaxClassifier -> Matrix -> Matrix -> Matrix # chypothesis :: SoftmaxClassifier -> Matrix -> Matrix -> Vector # ccost :: SoftmaxClassifier -> Regularization -> Matrix -> Vector -> Matrix -> R # cgradient :: SoftmaxClassifier -> Regularization -> Matrix -> Vector -> Matrix -> Matrix # cnumClasses :: SoftmaxClassifier -> Int # | |