{"id":48059092,"url":"https://github.com/anshaneja5/mldl.study","last_synced_at":"2026-04-04T14:30:51.688Z","repository":{"id":263383465,"uuid":"889958374","full_name":"anshaneja5/mldl.study","owner":"anshaneja5","description":"ML \u0026 DL roadmap with curated resources like videos, articles, research-papers, competitions, projects etc.","archived":false,"fork":false,"pushed_at":"2025-12-29T16:36:17.000Z","size":630,"stargazers_count":352,"open_issues_count":12,"forks_count":37,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-01T21:18:58.615Z","etag":null,"topics":["ai","aiml","artificial-intelligence","deep-learning","generative-ai","machine-learning","python","roadmap","roadmaps"],"latest_commit_sha":null,"homepage":"https://www.mldl.study/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anshaneja5.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-11-17T17:08:01.000Z","updated_at":"2026-01-01T01:15:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"f44d0711-b58b-49d9-8c0d-d3767c30a5df","html_url":"https://github.com/anshaneja5/mldl.study","commit_stats":null,"previous_names":["anshaneja5/mldl.study"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anshaneja5/mldl.study","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshaneja5%2Fmldl.study","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshaneja5%2Fmldl.study/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshaneja5%2Fmldl.study/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshaneja5%2Fmldl.study/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anshaneja5","download_url":"https://codeload.github.com/anshaneja5/mldl.study/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anshaneja5%2Fmldl.study/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31402626,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","aiml","artificial-intelligence","deep-learning","generative-ai","machine-learning","python","roadmap","roadmaps"],"created_at":"2026-04-04T14:30:51.220Z","updated_at":"2026-04-04T14:30:51.680Z","avatar_url":"https://github.com/anshaneja5.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MLDL.Study 🌐\n\n**MLDL.Study** is a free and interactive learning platform designed to simplify Machine Learning (ML) and Deep Learning (DL) education for students and enthusiasts. Currently focused on Indian audiences, the platform features curated roadmaps, videos, articles, and other learning materials.\n\n## Features ✨\n\n- **Interactive Roadmaps**: Easy-to-follow paths for ML and DL concepts\n- **Diverse Resources**: Video tutorials, articles, PDFs, and notes curated for each topic\n- **Community Growth**: Over 10000+ users\n\n## Getting Started 🚀\n\n### Prerequisites\n\nEnsure you have the following installed:\n- Node.js\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/anshaneja5/mldl.study.git\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   ```\n\n3. Start the development server:\n   ```bash\n   npm run dev\n   ```\n\n4. Open your browser and navigate to `http://localhost:5173`\n\n## Project Structure 📁\n\nThe content is organized into two main files:\n- `categorizedMLContent.js` - ML-related resources\n- `categorizedDLContent.js` - DL-related resources\n\nBoth files use simple JSON-like structures that anyone can contribute to.\n\n## Contributing 🤝\n\nWe welcome community contributions! Here's how you can help:\n\n### Adding New Resources\n\n1. Open the relevant file (`categorizedMLVideos.js` or `categorizedDLVideos.js`)\n2. Follow the existing structure to add your resource:\n   ```javascript\n    {\n        title: \"Handling Missing Data | Part 1 | Complete Case Analysis\",\n        url: \"https://youtube.com/watch?v=aUnNWZorGmk\",\n        articleLink:\"https://www.theanalysisfactor.com/missing-data-mechanism/\", //Could be any link and not just article\n        articleTitle: \"Missing Data Mechanism\",\n        notes: \"NOTE: This article is a great resource to understand the different mechanisms of missing data.\"\n   },\n   ```\n3. Ensure the resource title is concise and self-explanatory\n\n### Making Changes\n\n1. Create a new branch:\n   ```bash\n   git checkout -b feature/add-resources\n   ```\n\n2. Make and commit your changes:\n   ```bash\n   git add .\n   git commit -m \"Added new resources for ML roadmap\"\n   ```\n\n3. Push changes and create a Pull Request:\n   ```bash\n   git push origin feature/add-resources\n   ```\n\n### Contribution Guidelines\n\n- Ensure code is well-formatted and follows project conventions\n- Validate that added resources are high-quality and freely available\n- Keep commit messages clear and concise\n- Test changes locally before submitting a PR\n\n## Future Plans 🛠️\n\n- **English Audience Expansion**: Adding content suited for global learners\n- **Python Programming Roadmap**: A comprehensive roadmap for Python and related libraries\n- **Generative AI and Other Fields**: Roadmaps for fields like GenAI, Reinforcement Learning etc.\n\n## Contact 📫\n\nFeel free to reach out if you have any questions:\n\n- **Creator**: Ansh Aneja\n- **Email**: anshanejaa@gmail.com\n- **LinkedIn**: [linkedin.com/in/anshaneja5](https://www.linkedin.com/in/anshaneja5)\n  \n## Star History\n\n\u003ca href=\"https://www.star-history.com/#anshaneja5/mldl.study\u0026Date\"\u003e\n \u003cpicture\u003e\n   \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=anshaneja5/mldl.study\u0026type=Date\u0026theme=dark\" /\u003e\n   \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=anshaneja5/mldl.study\u0026type=Date\" /\u003e\n   \u003cimg alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=anshaneja5/mldl.study\u0026type=Date\" /\u003e\n \u003c/picture\u003e\n\u003c/a\u003e\n\n---\n\nThank you for contributing to MLDL Study! Your efforts make this platform better for learners worldwide. 🌟\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshaneja5%2Fmldl.study","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanshaneja5%2Fmldl.study","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanshaneja5%2Fmldl.study/lists"}