├── 2017 ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2018 ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2019 ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2020 ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2021 ├── coming-soon.md ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2022 ├── coming-soon.md ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2023 ├── coming-soon.md ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── 2024 ├── coming-soon.md ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── index.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── .gitignore ├── CNAME ├── Gemfile ├── Gemfile.lock ├── ISSUE_TEMPLATE.md ├── README.md ├── _config.yml ├── _includes ├── coming-soon.md ├── footer.html ├── gsoc-accepted-projects.html ├── gsoc-summary.html ├── head.html ├── header.html ├── js.html ├── mentor.html ├── mentor_process.html ├── navigation.html ├── project.html └── teaser.md ├── _layouts └── default.html ├── _posts ├── 2017-01-01-project-2017-evalai.markdown ├── 2017-01-02-project-2017-cvfy-.markdown ├── 2017-01-03-project-2017-ide.markdown ├── 2017-01-04-project-2017-cloudcv.markdown ├── 2018-01-29-project-2018-evalai.markdown ├── 2018-01-29-project-2018-fabrik.markdown ├── 2018-01-29-project-2018-origami-.markdown ├── 2019-02-05-project-2019-code-upload.markdown ├── 2019-02-05-project-2019-enhance-ui.markdown ├── 2019-02-05-project-2019-eval-worker.markdown ├── 2019-02-05-project-2019-new-ui.markdown ├── 2020-02-05-project-2020-1-enhancing-code-upload-pipeline.markdown ├── 2020-02-05-project-2020-2-analytics-dashboard.markdown ├── 2020-02-05-project-2020-3-streamlining-challenge-creation.markdown ├── 2020-02-05-project-2020-4-improving-evalai-frontend.markdown ├── 2021-02-19-project-2021-analytics-dashboard-for-hosts-and-participants.markdown ├── 2021-02-19-project-2021-improvements-in-evalai-frontend.markdown ├── 2021-02-19-project-2021-monitoring-setup-for-evalai-admins.markdown ├── 2021-02-19-project-2021-static-code-upload-challenge-evaluation.markdown ├── 2022-02-21-project-2022-analytics-dashboard-for-hosts-and-participants.markdown ├── 2022-02-21-project-2022-easy-challenge-management-on-evalai.markdown ├── 2022-02-26-project-2022-adversarial-data-collection-with-gradio.markdown ├── 2022-02-26-project-2022-robust-test-suite-and-infra-optimization-setup.markdown ├── 2023-02-06-project-2023-adversarial-data-using-gradio-and-evalai.markdown ├── 2023-02-06-project-2023-analytics-dashboard-for-evalai-users.markdown ├── 2023-02-07-project-2023-evaluation-infrastructure-optimization.markdown ├── 2023-02-07-project-2023-improvements-in-evalai-user-interface.markdown ├── 2024-02-06-project-2024-admin-tools-enhancement-and-cost-optimization.markdown ├── 2024-02-06-project-2024-challenge-synchronization-with-github-repositories.markdown ├── 2024-02-06-project-2024-testing-docs-errors.markdown ├── 2024-02-06-project-2024-user-experience-enhancement.markdown ├── 2025-02-11-project-2025-enhanced-test-suite-and-improved-user-experience.markdown ├── 2025-02-11-project-2025-mitigating-biases-and-prompt-effects-in-vision-language-models.markdown └── 2025-02-11-project-2025-rag-based-chat-bot-for-enhanced-challenge-support.markdown ├── css └── landing-page.css ├── img ├── bg.jpg ├── favicon.png ├── geek.jpg ├── intro-bg.jpg ├── mentor_summit.jpg ├── projects │ ├── admin-tools-integration-optimization.png │ ├── analytics-dashboard.jpg │ ├── cloudcv.png │ ├── code-upload-pipeline-for-static-datasets.png │ ├── code_upload.png │ ├── cvfy.png │ ├── ec2-auto-scaling.png │ ├── enhance-code-upload.png │ ├── enhance-ui.png │ ├── evalai.png │ ├── evalai_gradio.png │ ├── evalai_new.png │ ├── fabrik.png │ ├── github-sync.png │ ├── ide.png │ ├── monitoring-setup-for-evalai-admins.png │ ├── new-ui.png │ ├── robust-worker.png │ ├── search-tag-filter.png │ ├── streamlining-challenge-creation.jpg │ ├── test-exception-docs.png │ └── user-experience-leaderboard-integrations.png └── starbucks.jpg ├── index.html ├── js ├── github.js ├── landing-page.js ├── markdown.js └── redirect.js └── templates └── gsoc.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | _site 3 | .DS_Store -------------------------------------------------------------------------------- /2017/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/footer.html -------------------------------------------------------------------------------- /2017/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2017/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/gsoc-summary.html -------------------------------------------------------------------------------- /2017/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/head.html -------------------------------------------------------------------------------- /2017/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/header.html -------------------------------------------------------------------------------- /2017/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/index.html -------------------------------------------------------------------------------- /2017/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/js.html -------------------------------------------------------------------------------- /2017/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/mentor.html -------------------------------------------------------------------------------- /2017/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/mentor_process.html -------------------------------------------------------------------------------- /2017/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/navigation.html -------------------------------------------------------------------------------- /2017/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/project.html -------------------------------------------------------------------------------- /2017/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2017/teaser.md -------------------------------------------------------------------------------- /2018/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/footer.html -------------------------------------------------------------------------------- /2018/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2018/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/gsoc-summary.html -------------------------------------------------------------------------------- /2018/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/head.html -------------------------------------------------------------------------------- /2018/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/header.html -------------------------------------------------------------------------------- /2018/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/index.html -------------------------------------------------------------------------------- /2018/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/js.html -------------------------------------------------------------------------------- /2018/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/mentor.html -------------------------------------------------------------------------------- /2018/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/mentor_process.html -------------------------------------------------------------------------------- /2018/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/navigation.html -------------------------------------------------------------------------------- /2018/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/project.html -------------------------------------------------------------------------------- /2018/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2018/teaser.md -------------------------------------------------------------------------------- /2019/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/footer.html -------------------------------------------------------------------------------- /2019/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2019/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/gsoc-summary.html -------------------------------------------------------------------------------- /2019/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/head.html -------------------------------------------------------------------------------- /2019/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/header.html -------------------------------------------------------------------------------- /2019/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/index.html -------------------------------------------------------------------------------- /2019/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/js.html -------------------------------------------------------------------------------- /2019/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/mentor.html -------------------------------------------------------------------------------- /2019/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/mentor_process.html -------------------------------------------------------------------------------- /2019/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/navigation.html -------------------------------------------------------------------------------- /2019/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/project.html -------------------------------------------------------------------------------- /2019/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2019/teaser.md -------------------------------------------------------------------------------- /2020/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/footer.html -------------------------------------------------------------------------------- /2020/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2020/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/gsoc-summary.html -------------------------------------------------------------------------------- /2020/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/head.html -------------------------------------------------------------------------------- /2020/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/header.html -------------------------------------------------------------------------------- /2020/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/index.html -------------------------------------------------------------------------------- /2020/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/js.html -------------------------------------------------------------------------------- /2020/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/mentor.html -------------------------------------------------------------------------------- /2020/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/mentor_process.html -------------------------------------------------------------------------------- /2020/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/navigation.html -------------------------------------------------------------------------------- /2020/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/project.html -------------------------------------------------------------------------------- /2020/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2020/teaser.md -------------------------------------------------------------------------------- /2021/coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/coming-soon.md -------------------------------------------------------------------------------- /2021/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/footer.html -------------------------------------------------------------------------------- /2021/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2021/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/gsoc-summary.html -------------------------------------------------------------------------------- /2021/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/head.html -------------------------------------------------------------------------------- /2021/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/header.html -------------------------------------------------------------------------------- /2021/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/index.html -------------------------------------------------------------------------------- /2021/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/js.html -------------------------------------------------------------------------------- /2021/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/mentor.html -------------------------------------------------------------------------------- /2021/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/mentor_process.html -------------------------------------------------------------------------------- /2021/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/navigation.html -------------------------------------------------------------------------------- /2021/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/project.html -------------------------------------------------------------------------------- /2021/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2021/teaser.md -------------------------------------------------------------------------------- /2022/coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/coming-soon.md -------------------------------------------------------------------------------- /2022/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/footer.html -------------------------------------------------------------------------------- /2022/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2022/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/gsoc-summary.html -------------------------------------------------------------------------------- /2022/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/head.html -------------------------------------------------------------------------------- /2022/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/header.html -------------------------------------------------------------------------------- /2022/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/index.html -------------------------------------------------------------------------------- /2022/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/js.html -------------------------------------------------------------------------------- /2022/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/mentor.html -------------------------------------------------------------------------------- /2022/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/mentor_process.html -------------------------------------------------------------------------------- /2022/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/navigation.html -------------------------------------------------------------------------------- /2022/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/project.html -------------------------------------------------------------------------------- /2022/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2022/teaser.md -------------------------------------------------------------------------------- /2023/coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/coming-soon.md -------------------------------------------------------------------------------- /2023/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/footer.html -------------------------------------------------------------------------------- /2023/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2023/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/gsoc-summary.html -------------------------------------------------------------------------------- /2023/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/head.html -------------------------------------------------------------------------------- /2023/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/header.html -------------------------------------------------------------------------------- /2023/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/index.html -------------------------------------------------------------------------------- /2023/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/js.html -------------------------------------------------------------------------------- /2023/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/mentor.html -------------------------------------------------------------------------------- /2023/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/mentor_process.html -------------------------------------------------------------------------------- /2023/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/navigation.html -------------------------------------------------------------------------------- /2023/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/project.html -------------------------------------------------------------------------------- /2023/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2023/teaser.md -------------------------------------------------------------------------------- /2024/coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/coming-soon.md -------------------------------------------------------------------------------- /2024/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/footer.html -------------------------------------------------------------------------------- /2024/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /2024/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/gsoc-summary.html -------------------------------------------------------------------------------- /2024/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/head.html -------------------------------------------------------------------------------- /2024/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/header.html -------------------------------------------------------------------------------- /2024/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/index.html -------------------------------------------------------------------------------- /2024/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/js.html -------------------------------------------------------------------------------- /2024/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/mentor.html -------------------------------------------------------------------------------- /2024/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/mentor_process.html -------------------------------------------------------------------------------- /2024/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/navigation.html -------------------------------------------------------------------------------- /2024/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/project.html -------------------------------------------------------------------------------- /2024/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/2024/teaser.md -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | gsoc.cloudcv.org -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/coming-soon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/coming-soon.md -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/gsoc-accepted-projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/gsoc-accepted-projects.html -------------------------------------------------------------------------------- /_includes/gsoc-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/gsoc-summary.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/js.html -------------------------------------------------------------------------------- /_includes/mentor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/mentor.html -------------------------------------------------------------------------------- /_includes/mentor_process.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/mentor_process.html -------------------------------------------------------------------------------- /_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/navigation.html -------------------------------------------------------------------------------- /_includes/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/project.html -------------------------------------------------------------------------------- /_includes/teaser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_includes/teaser.md -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_posts/2017-01-01-project-2017-evalai.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2017-01-01-project-2017-evalai.markdown -------------------------------------------------------------------------------- /_posts/2017-01-02-project-2017-cvfy-.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2017-01-02-project-2017-cvfy-.markdown -------------------------------------------------------------------------------- /_posts/2017-01-03-project-2017-ide.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2017-01-03-project-2017-ide.markdown -------------------------------------------------------------------------------- /_posts/2017-01-04-project-2017-cloudcv.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2017-01-04-project-2017-cloudcv.markdown -------------------------------------------------------------------------------- /_posts/2018-01-29-project-2018-evalai.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2018-01-29-project-2018-evalai.markdown -------------------------------------------------------------------------------- /_posts/2018-01-29-project-2018-fabrik.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2018-01-29-project-2018-fabrik.markdown -------------------------------------------------------------------------------- /_posts/2018-01-29-project-2018-origami-.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2018-01-29-project-2018-origami-.markdown -------------------------------------------------------------------------------- /_posts/2019-02-05-project-2019-code-upload.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2019-02-05-project-2019-code-upload.markdown -------------------------------------------------------------------------------- /_posts/2019-02-05-project-2019-enhance-ui.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2019-02-05-project-2019-enhance-ui.markdown -------------------------------------------------------------------------------- /_posts/2019-02-05-project-2019-eval-worker.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2019-02-05-project-2019-eval-worker.markdown -------------------------------------------------------------------------------- /_posts/2019-02-05-project-2019-new-ui.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2019-02-05-project-2019-new-ui.markdown -------------------------------------------------------------------------------- /_posts/2020-02-05-project-2020-1-enhancing-code-upload-pipeline.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2020-02-05-project-2020-1-enhancing-code-upload-pipeline.markdown -------------------------------------------------------------------------------- /_posts/2020-02-05-project-2020-2-analytics-dashboard.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2020-02-05-project-2020-2-analytics-dashboard.markdown -------------------------------------------------------------------------------- /_posts/2020-02-05-project-2020-3-streamlining-challenge-creation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2020-02-05-project-2020-3-streamlining-challenge-creation.markdown -------------------------------------------------------------------------------- /_posts/2020-02-05-project-2020-4-improving-evalai-frontend.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2020-02-05-project-2020-4-improving-evalai-frontend.markdown -------------------------------------------------------------------------------- /_posts/2021-02-19-project-2021-analytics-dashboard-for-hosts-and-participants.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2021-02-19-project-2021-analytics-dashboard-for-hosts-and-participants.markdown -------------------------------------------------------------------------------- /_posts/2021-02-19-project-2021-improvements-in-evalai-frontend.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2021-02-19-project-2021-improvements-in-evalai-frontend.markdown -------------------------------------------------------------------------------- /_posts/2021-02-19-project-2021-monitoring-setup-for-evalai-admins.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2021-02-19-project-2021-monitoring-setup-for-evalai-admins.markdown -------------------------------------------------------------------------------- /_posts/2021-02-19-project-2021-static-code-upload-challenge-evaluation.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2021-02-19-project-2021-static-code-upload-challenge-evaluation.markdown -------------------------------------------------------------------------------- /_posts/2022-02-21-project-2022-analytics-dashboard-for-hosts-and-participants.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2022-02-21-project-2022-analytics-dashboard-for-hosts-and-participants.markdown -------------------------------------------------------------------------------- /_posts/2022-02-21-project-2022-easy-challenge-management-on-evalai.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2022-02-21-project-2022-easy-challenge-management-on-evalai.markdown -------------------------------------------------------------------------------- /_posts/2022-02-26-project-2022-adversarial-data-collection-with-gradio.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2022-02-26-project-2022-adversarial-data-collection-with-gradio.markdown -------------------------------------------------------------------------------- /_posts/2022-02-26-project-2022-robust-test-suite-and-infra-optimization-setup.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2022-02-26-project-2022-robust-test-suite-and-infra-optimization-setup.markdown -------------------------------------------------------------------------------- /_posts/2023-02-06-project-2023-adversarial-data-using-gradio-and-evalai.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2023-02-06-project-2023-adversarial-data-using-gradio-and-evalai.markdown -------------------------------------------------------------------------------- /_posts/2023-02-06-project-2023-analytics-dashboard-for-evalai-users.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2023-02-06-project-2023-analytics-dashboard-for-evalai-users.markdown -------------------------------------------------------------------------------- /_posts/2023-02-07-project-2023-evaluation-infrastructure-optimization.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2023-02-07-project-2023-evaluation-infrastructure-optimization.markdown -------------------------------------------------------------------------------- /_posts/2023-02-07-project-2023-improvements-in-evalai-user-interface.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2023-02-07-project-2023-improvements-in-evalai-user-interface.markdown -------------------------------------------------------------------------------- /_posts/2024-02-06-project-2024-admin-tools-enhancement-and-cost-optimization.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2024-02-06-project-2024-admin-tools-enhancement-and-cost-optimization.markdown -------------------------------------------------------------------------------- /_posts/2024-02-06-project-2024-challenge-synchronization-with-github-repositories.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2024-02-06-project-2024-challenge-synchronization-with-github-repositories.markdown -------------------------------------------------------------------------------- /_posts/2024-02-06-project-2024-testing-docs-errors.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2024-02-06-project-2024-testing-docs-errors.markdown -------------------------------------------------------------------------------- /_posts/2024-02-06-project-2024-user-experience-enhancement.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2024-02-06-project-2024-user-experience-enhancement.markdown -------------------------------------------------------------------------------- /_posts/2025-02-11-project-2025-enhanced-test-suite-and-improved-user-experience.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2025-02-11-project-2025-enhanced-test-suite-and-improved-user-experience.markdown -------------------------------------------------------------------------------- /_posts/2025-02-11-project-2025-mitigating-biases-and-prompt-effects-in-vision-language-models.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2025-02-11-project-2025-mitigating-biases-and-prompt-effects-in-vision-language-models.markdown -------------------------------------------------------------------------------- /_posts/2025-02-11-project-2025-rag-based-chat-bot-for-enhanced-challenge-support.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/_posts/2025-02-11-project-2025-rag-based-chat-bot-for-enhanced-challenge-support.markdown -------------------------------------------------------------------------------- /css/landing-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/css/landing-page.css -------------------------------------------------------------------------------- /img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/bg.jpg -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/geek.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/geek.jpg -------------------------------------------------------------------------------- /img/intro-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/intro-bg.jpg -------------------------------------------------------------------------------- /img/mentor_summit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/mentor_summit.jpg -------------------------------------------------------------------------------- /img/projects/admin-tools-integration-optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/admin-tools-integration-optimization.png -------------------------------------------------------------------------------- /img/projects/analytics-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/analytics-dashboard.jpg -------------------------------------------------------------------------------- /img/projects/cloudcv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/cloudcv.png -------------------------------------------------------------------------------- /img/projects/code-upload-pipeline-for-static-datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/code-upload-pipeline-for-static-datasets.png -------------------------------------------------------------------------------- /img/projects/code_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/code_upload.png -------------------------------------------------------------------------------- /img/projects/cvfy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/cvfy.png -------------------------------------------------------------------------------- /img/projects/ec2-auto-scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/ec2-auto-scaling.png -------------------------------------------------------------------------------- /img/projects/enhance-code-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/enhance-code-upload.png -------------------------------------------------------------------------------- /img/projects/enhance-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/enhance-ui.png -------------------------------------------------------------------------------- /img/projects/evalai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/evalai.png -------------------------------------------------------------------------------- /img/projects/evalai_gradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/evalai_gradio.png -------------------------------------------------------------------------------- /img/projects/evalai_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/evalai_new.png -------------------------------------------------------------------------------- /img/projects/fabrik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/fabrik.png -------------------------------------------------------------------------------- /img/projects/github-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/github-sync.png -------------------------------------------------------------------------------- /img/projects/ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/ide.png -------------------------------------------------------------------------------- /img/projects/monitoring-setup-for-evalai-admins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/monitoring-setup-for-evalai-admins.png -------------------------------------------------------------------------------- /img/projects/new-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/new-ui.png -------------------------------------------------------------------------------- /img/projects/robust-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/robust-worker.png -------------------------------------------------------------------------------- /img/projects/search-tag-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/search-tag-filter.png -------------------------------------------------------------------------------- /img/projects/streamlining-challenge-creation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/streamlining-challenge-creation.jpg -------------------------------------------------------------------------------- /img/projects/test-exception-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/test-exception-docs.png -------------------------------------------------------------------------------- /img/projects/user-experience-leaderboard-integrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/projects/user-experience-leaderboard-integrations.png -------------------------------------------------------------------------------- /img/starbucks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/img/starbucks.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/index.html -------------------------------------------------------------------------------- /js/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/js/github.js -------------------------------------------------------------------------------- /js/landing-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/js/landing-page.js -------------------------------------------------------------------------------- /js/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/js/markdown.js -------------------------------------------------------------------------------- /js/redirect.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/gsoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cloud-CV/GSoC-Ideas/HEAD/templates/gsoc.md --------------------------------------------------------------------------------