You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for empty levels
* Refactor predict method for local classifier per parent node
* Refactor predict() method for local classifier per level
* Add black linting and badge
@@ -34,7 +34,7 @@ HiClass is an open-source Python library for hierarchical classification compati
34
34
-**Hierarchical metrics:** HiClass supports the computation of hierarchical precision, recall and f-score, which are more appropriate for hierarchical data than traditional metrics.
35
35
-**Compatible with pickle:** Easily store trained models on disk for future use.
36
36
37
-
**Don't see a feature on this list?** Search our [issue tracker](https://github.com/mirand863/hiclass/issues) if someone has already requested it and add a comment to it explaining your use-case, or open a new issue if not. We prioritize our roadmap based on user feedback, so we'd love to hear from you.
37
+
**Any feature missing on this list?** Search our [issue tracker](https://github.com/mirand863/hiclass/issues)to see if someone has already requested it and add a comment to it explaining your use-case. Otherwise, please open a new issue describing the requested feature and possible use-case scenario. We prioritize our roadmap based on user feedback, so we would love to hear from you.
38
38
39
39
## Benchmarks
40
40
@@ -85,7 +85,7 @@ We would love to benchmark with larger datasets, if we can find them in the publ
85
85
86
86
Here is our public roadmap: https://github.com/mirand863/hiclass/projects/1.
87
87
88
-
We do Just-In-Time planning, and we tend to reprioritize based on your feedback. Hence, items you see on this roadmap are subject to change. We prioritize features based on the number of people asking for it, features/fixes that are small enough and can be addressed while we work on other related features, features/fixes that help improve stability & relevance and features that address interesting use cases that excite us! If you'd like to have a request prioritized, we ask that you add a detailed use-case for it, either as a comment on an existing issue (besides a thumbs-up) or in a new issue. The detailed context helps.
88
+
We do Just-In-Time planning, and we tend to reprioritize based on your feedback. Hence, items you see on this roadmap are subject to change. We prioritize features based on the number of people asking for it, features/fixes that are small enough and can be addressed while we work on other related features, features/fixes that help improve stability & relevance and features that address interesting use cases that excite us! If you would like to have a request prioritized, we ask that you add a detailed use-case for it, either as a comment on an existing issue (besides a thumbs-up) or in a new issue. The detailed context helps.
89
89
90
90
91
91
## Who is using HiClass?
@@ -123,7 +123,7 @@ Here's a quick example showcasing how you can train and predict using a local cl
123
123
from hiclass import LocalClassifierPerNode
124
124
from sklearn.ensemble import RandomForestClassifier
125
125
126
-
#define data
126
+
#Define data
127
127
X_train = [[1], [2], [3], [4]]
128
128
X_test = [[4], [3], [2], [1]]
129
129
Y_train = [
@@ -152,7 +152,7 @@ from sklearn.feature_extraction.text import CountVectorizer, TfidfTransformer
152
152
from sklearn.linear_model import LogisticRegression
We are a small team on a mission to democratize hierarchical classification, and we'll take all the help we can get! If you'd like to get involved, here's information on [contribution guidelines and how to test the code locally](https://github.com/mirand863/hiclass/blob/main/CONTRIBUTING.md).
223
+
We are a small team on a mission to democratize hierarchical classification, and we will take all the help we can get! If you would like to get involved, here is information on [contribution guidelines and how to test the code locally](https://github.com/mirand863/hiclass/blob/main/CONTRIBUTING.md).
224
+
225
+
You can contribute in multiple ways, e.g., reporting bugs, writing or translating documentation, reviewing or refactoring code, requesting or implementing new features, etc.
0 commit comments