modAL
modAL copied to clipboard
A modular active learning framework for Python
I just spent a few hours debugging this. I tried to play with this using a tfidf vectorizer which returns a sparse matrix. That didn't work with cryptic errors. I...
Hey is this something you'd like to add to the library ? ## Rationale Bookeeping which examples have been labeled is no fun and error prone and verbose. I propose...
hey,I'm here to thank you what a great modAL you offered to us,but I'd like to use the vote entropy and consensus entropy to improve the prediction.Since I'm a rookie...
Hi modAL team, I have been using the **classifier_uncertainty** function in the uncertainty module: ```python def classifier_uncertainty(classifier: BaseEstimator, X: modALinput, **predict_proba_kwargs) -> np.ndarray: """ Classification uncertainty of the classifier for...
``` from modAL.models import ActiveLearner learner = ActiveLearner( estimator=classifier, X_training=X_initial, y_training=y_initial, verbose=1 ) ``` Here I am trying to do the Named-Entity Recognition task, so the shape of y_initial is...
I want to know if modAL supports 3DCNN?
Hi, I would like to use modAl in Dash. The problem is, global variables will break the Dash app. That's why they invented the Dash Store component. In the first...
All of my relevant code: ```python #!/usr/bin/env python3.5 from data_generator import data_generator as dg # standard imports from keras.models import load_model from keras.utils import to_categorical from keras.wrappers.scikit_learn import KerasClassifier from...
This is a proposition of optimization for the ranked batch method. In the ranked batch methods, the distance between all unlabeled samples is computed at each iteration which is computationally...
when I use modAl with keras multi_gpu_model,training occurred error like following: > Query no. 1 Traceback (most recent call last): File "/home/es712/Documents/MingHan/pycode/test/ALtest.py", line 77, in query_idx, query_instance = learner.query(X_pool, n_instances=100,...