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
{{ message }}
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
When I run nosetests son azimuth it fails with the following output:
# nosetests /Library/Python/2.7/site-packages/sklearn/cross_validation.py:41: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning) /Library/Python/2.7/site-packages/sklearn/grid_search.py:42: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. This module will be removed in 0.20. DeprecationWarning) F ====================================================================== FAIL: test_predictions (azimuth.tests.test_saved_models.SavedModelTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/Library/Python/2.7/site-packages/azimuth/tests/test_saved_models.py", line 19, in test_predictions self.assertTrue(np.allclose(predictions, df['Stable prediction'].values, atol=1e-3)) AssertionError: False is not true -------------------- >> begin captured stdout << --------------------- No model file specified, using V3_model_nopos `--------------------- >> end captured stdout << ----------------------` ---------------------------------------------------------------------- Ran 1 test in 3.481s
`` FAILED (failures=1)
The text was updated successfully, but these errors were encountered:
Hi @nivekkagicom - did you use pip install azimuth to install? If so, could you try installing directly from the git repo instead (after uninstalling the pip package)? For example:
I did install according to the instructions in the Readme.md. Using the provided steps does install Azimuth and rebuild scikit-learn-0.17.1 which allows nosetests to complete correctly. Might I suggest that the Readme.md file needs to be updated or perhaps better the project needs a new public release or to support the latest version of scikit-learn. Thanks for the assistance.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I run nosetests son azimuth it fails with the following output:
# nosetests
/Library/Python/2.7/site-packages/sklearn/cross_validation.py:41: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning)
/Library/Python/2.7/site-packages/sklearn/grid_search.py:42: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. This module will be removed in 0.20. DeprecationWarning)
F
======================================================================
FAIL: test_predictions (azimuth.tests.test_saved_models.SavedModelTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/azimuth/tests/test_saved_models.py", line 19, in test_predictions
self.assertTrue(np.allclose(predictions, df['Stable prediction'].values, atol=1e-3))
AssertionError: False is not true
-------------------- >> begin captured stdout << ---------------------
No model file specified, using V3_model_nopos
`--------------------- >> end captured stdout << ----------------------`
----------------------------------------------------------------------
Ran 1 test in 3.481s
``
FAILED (failures=1)
The text was updated successfully, but these errors were encountered: