-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(deps): improve code quality and documentation
- Configure ruff linter rules to resolve conflicts - Add type annotations and docstrings - Improve code style and formatting - Update import statements and file organization - Add all for explicit exports
- Loading branch information
1 parent
0e58df9
commit aabea8e
Showing
8 changed files
with
588 additions
and
325 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
""" | ||
milwrap | ||
~~~~~~ | ||
"""The milwrap package - multiple instane meta-learner that can use any supervised-learning algorithms. | ||
The milwrap package - multiple instane meta-learner that can use any supervised-learning algorithms. | ||
This package provides implementations of multiple instance learning algorithms | ||
that can wrap around any supervised learning algorithm. | ||
""" | ||
|
||
from milwrap.countbase import MilCountBasedMultiClassLearner | ||
|
||
__all__ = ["MilCountBasedMultiClassLearner"] |
Oops, something went wrong.