modAL
modAL copied to clipboard
the modAL package has been changed into modal in the pip repository
import modAL is not working. Most of the modules that is found in the official documentation is not working
this is pretty serious as packages depending on modal cannot be installed properly now
The new package name is modAL-python. I have indicated this in the docs and in #168, but I won't close this issue for more visibility.
import modAL still seems not to work. I tried different versions of modAL-python.
`----> 4 from modAL.models import ActiveLearner 5 from modAL.uncertainty import uncertainty_sampling
ModuleNotFoundError: No module named 'modAL' `
import modal results in `---> 12 from modAL.utils.validation import check_class_labels, check_class_proba
13 from modAL.uncertainty import uncertainty_sampling
14 from modAL.disagreement import vote_entropy_sampling, max_std_sampling
ModuleNotFoundError: No module named 'modAL'`
Changing the name package folder from "modal" to "modAL" worked..
@kcambrek I believe that having install modal interfers with the import of modAL-python. I deleted the virtual enviroment and reinstalled all the requirements, including modAL-python>=0.4.1. The problem was solved.
If you don't want to delete the whole enviroment and install the packages, maybe try:
pip uninstall modal
pip install --force-reinstall --no-cache-dir modAL-python>=0.4.1
Changing the name package folder from "modal" to "modAL" worked..
Doing this i am getting AttributeError: 'ActiveLearner' object has no attribute 'bootstrap_init'
Could we update the docs to the new package name? This puzzled me for a little while.
https://modal-python.readthedocs.io/en/latest/content/overview/Installation.html#
Happy to PR if helpful
Poetry as package manager:
from modAL.models import ActiveLearner -> ModuleNotFoundError: No module named 'modAL'
from modal.models import ActiveFeedback ->
3 import numpy as np
----> 4 from modAL.acquisition import max_EI
5 from modAL.disagreement import max_std_sampling, vote_entropy_sampling
6 from modAL.models.base import BaseCommittee, BaseLearner
ModuleNotFoundError: No module named 'modAL'
I cannot get it to run. From my point of view the library is completely unusable at the moment.