-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch the multiclass modules to be based on scores rather than proba…
…bilities
- Loading branch information
1 parent
8dfc089
commit 468e1ee
Showing
3 changed files
with
15 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
""" | ||
Neural network model related public interface. | ||
""" | ||
from qusi.internal.hadryss_model import HadryssBinaryClassEndModule, HadryssMultiClassEndModule | ||
from qusi.internal.hadryss_model import HadryssBinaryClassEndModule, \ | ||
HadryssMultiClassScoreEndModule, HadryssMultiClassProbabilityEndModule | ||
|
||
__all__ = [ | ||
'HadryssBinaryClassEndModule', | ||
'HadryssMultiClassEndModule', | ||
'HadryssMultiClassScoreEndModule', | ||
'HadryssMultiClassProbabilityEndModule', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters