practical-machine-learning-with-python icon indicating copy to clipboard operation
practical-machine-learning-with-python copied to clipboard

unable to install model_evaluation_utils

Open msnir009 opened this issue 6 years ago • 9 comments

Hi, I am trying to use your model evaluation package in google colab and I am getting the error as below: !pip install model_evaluation_utils

Collecting model_evaluation_utils ERROR: Could not find a version that satisfies the requirement model_evaluation_utils (from versions: none) ERROR: No matching distribution found for model_evaluation_utils

how can I solve this problem?

Appreciate your reply. Thanks

msnir009 avatar Jun 11 '19 20:06 msnir009

It's not a publicly available library, there is a model_evaluation_utils.py file which is imported in the code and used

dipanjanS avatar Jun 12 '19 00:06 dipanjanS

thanks. I tried to import the file but i am getting this error: AttributeError: module 'model_evaluation_utils' has no attribute 'display_model_performance_metrics'

msnir009 avatar Jun 12 '19 09:06 msnir009

Could you please mention more details like which notebook, which folder \ chapter and files you are using, and even show the code causing the error. It is difficult to debug it from just this message because the said function is already present in the file.

dipanjanS avatar Jun 13 '19 15:06 dipanjanS

AttributeError: module 'model_evaluation_utils' has no attribute 'display_model_performance_metrics' the above function is already present in the file but still i am getting that error. Please help me to resolve this issue.

VINEESHA5 avatar Mar 23 '20 08:03 VINEESHA5

thanks. I tried to import the file but i am getting this error: AttributeError: module 'model_evaluation_utils' has no attribute 'display_model_performance_metrics'

Is ur error resolved, if so please help me.

VINEESHA5 avatar Mar 23 '20 08:03 VINEESHA5

I am guessing that this is just a .py file that you have to run and use its functions.

I used this code instead of importing the "model_evaluation_utils" and used the functions defined here directly instead: https://github.com/dipanjanS/practical-machine-learning-with-python/blob/master/notebooks/Ch05_Building_Tuning_and_Deploying_Models/model_evaluation_utils.py

This solved my problem

A5mad avatar Mar 24 '20 00:03 A5mad

AttributeError: module 'model_evaluation_utils' has no attribute 'display_model_performance_metrics' the above function is already present in the file but still i am getting that error. Please help me to resolve this issue.

This is the function that you required from the model_evaluation_utils file:

def display_model_performance_metrics(true_labels, predicted_labels, classes=[1,0]): print('Model Performance metrics:') print('-'*30) get_metrics(true_labels=true_labels, predicted_labels=predicted_labels) print('\nModel Classification report:') print('-'*30) display_classification_report(true_labels=true_labels, predicted_labels=predicted_labels, classes=classes) print('\nPrediction Confusion Matrix:') print('-'*30) display_confusion_matrix(true_labels=true_labels, predicted_labels=predicted_labels, classes=classes)

A5mad avatar Mar 24 '20 00:03 A5mad

I am guessing that this is just a .py file that you have to run and use its functions. I used this code instead of importing the "model_evaluation_utils" and used the functions defined here directly instead: https://github.com/dipanjanS/practical-machine-learning-with-python/blob/master/notebooks/Ch05_Building_Tuning_and_Deploying_Models/model_evaluation_utils.py This solved my problem

Thank you so much....... @A5mad

VINEESHA5 avatar Mar 24 '20 05:03 VINEESHA5

hello, i am a student, i have gone through your book- 1_Practical Machine Learning with Python_ A Problem-Solver’s Guide to Building Real-World Intelligent Systems i am learning this chapter CHAPTER 9 Analyzing Wine Types and Quality

i got stuck at Predictive Modeling task at this code import model_evaluation_utils as meu Screenshot 2023-03-08 011605

its looks like you have created this library, if possible will u share with us.

THANK YOU. MOHAMMED AZMATH

azmathmohammed avatar Mar 08 '23 01:03 azmathmohammed