Skip to content
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

Personalized Learning Paths #423

Closed
3 tasks done
potdarsrushti4 opened this issue Oct 10, 2024 · 1 comment
Closed
3 tasks done

Personalized Learning Paths #423

potdarsrushti4 opened this issue Oct 10, 2024 · 1 comment

Comments

@potdarsrushti4
Copy link

Is your feature request related to a problem? Please describe.

We could implement a feature where users can input their skills, and based on this information, the system would suggest appropriate courses tailored to their level and interests.

Describe the solution you'd like.

  1. When a user submits their skills and level, the system will:
  2. Retrieve courses that match the input skills.
  3. Filter courses based on the specified skill level.
  4. display a list of recommended courses along with brief descriptions, ratings, and links to enroll.

--pseudo code--
function getMatchingCourses(userSkills, userLevel) {
const courses = [
{ name: "Intro to Machine Learning", skills: ["Python", "Machine Learning"], level: "beginner" },
{ name: "Advanced Data Science", skills: ["R", "Statistics"], level: "advanced" },

];

// Filter courses
const matchingCourses = courses.filter(course => {
    const skillMatch = course.skills.some(skill => userSkills.includes(skill));
    const levelMatch = course.level === userLevel;
    return skillMatch && levelMatch;
});

return matchingCourses;

}

const userSkills = ["Python", "Data Analysis"];
const userLevel = "beginner";
const recommendedCourses = getMatchingCourses(userSkills, userLevel);
console.log(recommendedCourses);

Describe alternatives you've considered.

No response

Additional context.

Filter Logic:

  1. Perform a keyword match against the course database.
  2. Retrieve courses that contain the input skills in their descriptions or tags.
  3. Filter the results based on the user-specified skill level.

Show us the magic with screenshots

image
image

Checklist

@vivekvardhan2810
Copy link
Member

This issue was assigned before, so I am closing this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants