Feature request - Hybrid Recommendation System for Model Selection #324
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #116
Related Issues or bug
Fixes: #[issue number that will be closed through this PR]
Proposed Changes
Description:
I have implemented a Hybrid Recommendation System that helps users select the most appropriate machine learning models based on the type of dataset and the task (e.g., classification, regression). This system combines content-based filtering (recommending models based on dataset features) and collaborative filtering (ranking models based on user feedback).
Code Overview:
This function analyzes the dataset and task type to suggest suitable models. For example, if the data is images and the task is classification, models like CNN and ResNet are recommended.
get_user_feedback(model):
This function retrieves user feedback for a specific model. If feedback exists, it returns the average rating for the model (on a scale of 1-5); otherwise, it informs that no feedback is available.
hybrid_recommendation_system(data, task_type):
This function combines the two approaches:
Additional info:
The system can be enhanced by adding more models and feedback, or integrating it into a larger platform for ML model selection.
I am happy to collaborate on improving this further!