-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No module named 'regression' #10
Comments
You should change the line to:
You should repeat that multiple times for all occurrences of that error and you should probably also |
It's still not working |
what error are you getting? Remember you should add |
Having this same issue as well installing from pip on a kaggle kernel edit: installing @danpol's PR worked |
I am having the same issue. @kpei - How did you resolve it exactly. I don't see that PR |
I have the same issue, and I don't know how to solve it. If you were able to find the solution please let me know |
Looks like the init file isn't finding the files in the package. For anyone interested in an immediate quick and dirty fix, to get it running on your machine add the hunga-bunga module to your sys path before calling General Example:
Specific Example:
|
The relative import path in the module are missing To fix, modify the following files in the follow ways: init.pyAdd a
classifiction.pyAdd a
regression.pyAdd a
|
I had a similar problem- |
I followed steps suggested by jamespreed and installed tabulate using pip install tabulate. Then I was able to import using following commands :- |
i think you can try: |
Hi,
I am getting below error while initializing. Please advise the solution
FYI - All libraries are updated with latest version
ModuleNotFoundError Traceback (most recent call last)
in ()
----> 1 from hunga_bunga import HungaBungaClassifier, HungaBungaRegressor, HungaBungaZeroKnowledge
~\Anaconda3\lib\site-packages\hunga_bunga_init_.py in ()
4 from multiprocessing import cpu_count
5 from sklearn.base import BaseEstimator
----> 6 from regression import HungaBungaRegressor
7 from classification import HungaBungaClassifier
8
ModuleNotFoundError: No module named 'regression'
The text was updated successfully, but these errors were encountered: