-
-
Notifications
You must be signed in to change notification settings - Fork 340
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
Online Food Delivery Preferences #961
Online Food Delivery Preferences #961
Conversation
Our team will soon review your PR. Thanks @Pratzybha :) |
@abhisheks008 I tried to do pull request many times today. I received some or the other error every time. My files were not loading only. Can you go through these uploaded files once and let me know if I have to make any major changes? |
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.
@abhisheks008 I made the required changes. |
Time Factor image is not visible. Please check once! |
@abhisheks008 completed. please check. |
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.
Approved!
@Pratzybha
Pull Request for DL-Simplified 💡
Issue Title : Online Food Delivery Preferences
Predict whether customers will place future orders using CNN, RNN, and a hybrid RNN+LSTM model based on demographic data such as age, occupation, monthly income, and family size.
Perform sentiment analysis on customer reviews to better understand customer experiences, using DNN, LSTM, and GRU models to classify the reviews as positive or negative.
JWOC Participant
) GSSOC '24-EXTCloses: #793
Describe the add-ons or changes you've made 📃
Data Preprocessing:
-Removed missing and irrelevant data (e.g., 'Nil' reviews).
-Tokenized reviews and converted them into sequences suitable for deep learning models.
Exploratory Data Analysis (EDA):
-Analyzed the distribution of customer demographics such as age, income, family size etc.
-Created visualizations like bar charts and word clouds for reviews to understand sentiment polarity.
Model Implementation for Prediction:
-Built CNN, RNN, and RNN+LSTM models to predict customer reordering behavior.
-Experimented with different architectures to capture patterns in structured data.
Model Implementation for Sentiment Analysis:
-Developed DNN, LSTM, and GRU models for customer review analysis.
-These models were optimized to handle varying text lengths and interpret user sentiment effectively.
Evaluation and Comparison:
-Compared models using accuracy, precision, recall, and F1-score.
-Identified the most accurate models for each task.
Type of change ☑️
What sort of change have you made:
How Has This Been Tested? ⚙️
Model Evaluation: After training, each model is evaluated on the test dataset (X_test and y_test). The evaluation returns the test loss and accuracy, which are printed. This provides an overall accuracy metric for the model on unseen data.
Prediction and Thresholding: Each model makes predictions on X_test, which are then thresholded at 0.5 (converting probabilities to binary predictions, i.e., 0 or 1).
Performance Metrics:
2)Classification Report: A classification report (precision, recall, and F1-score) is generated using classification_report(y_test, y_pred), where y_pred is the thresholded predictions.
Checklist: ☑️