-
Notifications
You must be signed in to change notification settings - Fork 72
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
add new model named credit card estimator used to detect whether the … #113
add new model named credit card estimator used to detect whether the … #113
Conversation
…transaction is faulty or not by randomforestcalssifier
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add model_details function and keep the pickle file in saved_models/
Please mention the relevant issue no. as well |
This PR addresses the issue #2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Model_details function is missing from your code.
- After testing various combinations of inputs, the model consistently returns "Fraud" as the output.
- Please provide a proper model_details function that outputs key evaluation parameters of the RandomForestClassifier. Like: Accuracy, Precision, Recall, F1 Score, Confusion Matrix, Feature Importance etc.
This would help in understanding the performance and behavior of the model more clearly. - Additionally, I noticed the notebook is missing. While it’s not important, if you’ve tried other models, it would be great to showcase that work as well.
… add model_details function and plot some graphs
…it-card-estimator
Please check the new commits. Try to resolve all the problem |
Is there any issue still needs to work on? |
OK so please close this pr now
…On Sun, 27 Oct, 2024, 9:44 pm Yashasvini Sharma, ***@***.***> wrote:
Merged #113 <#113>
into master.
—
Reply to this email directly, view it on GitHub
<#113 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A3BOH4BT25OYI23B6CZZFJ3Z5UGOPAVCNFSM6AAAAABPWNDGRKVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJUHEZDONRTGYZTAMI>
.
You are receiving this because you were assigned.Message ID:
***@***.***
com>
|
…transaction is faulty or not by randomforestcalssifier
Description
Issue Resolved
Changes Made
Screenshots or Videos
Additional Details
Checklist
requirements.txt
file to include any new packagespredict.py
file includes a properly implementedmodel_details()
function, or the notebook contains this function to print a detailed model report. The model will not be accepted without this function, as it is essential for generating the necessary model details.