Repository: severus27/OpenML-Guide Branch: main Commit: addca949df70 Files: 59 Total size: 89.8 KB Directory structure: gitextract_b1h8jdvd/ ├── .env-example ├── .gitignore ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app/ │ ├── [lang]/ │ │ ├── (home)/ │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── api/ │ │ │ └── search/ │ │ │ └── route.ts │ │ ├── docs/ │ │ │ ├── [[...slug]]/ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── raw/ │ │ │ └── [...slug]/ │ │ │ └── route.ts │ │ ├── global.css │ │ ├── layout.tsx │ │ └── llms.mdx/ │ │ └── [[...slug]]/ │ │ └── route.ts │ ├── layout.config.tsx │ └── llms-full.txt/ │ └── route.ts ├── components/ │ ├── ai/ │ │ └── page-actions.tsx │ ├── banner.tsx │ ├── feedback.tsx │ ├── footer.tsx │ └── mdx/ │ └── mermaid.tsx ├── content/ │ └── docs/ │ ├── math/ │ │ ├── index.mdx │ │ └── meta.json │ ├── meta.json │ └── python/ │ ├── index.mdx │ ├── matplotlib/ │ │ └── index.mdx │ ├── meta.json │ ├── numpy/ │ │ └── index.mdx │ ├── pandas/ │ │ └── index.mdx │ ├── python/ │ │ ├── control-flow.mdx │ │ ├── data-structures.mdx │ │ ├── data-types.mdx │ │ ├── error-handling.mdx │ │ ├── file-handling.mdx │ │ ├── functions.mdx │ │ ├── hello-world.mdx │ │ ├── index.mdx │ │ ├── meta.json │ │ ├── oop.mdx │ │ └── operators.mdx │ ├── scikit-learn/ │ │ └── index.mdx │ └── setup.mdx ├── lib/ │ ├── cn.ts │ ├── get-llm-text.ts │ ├── github.ts │ ├── i18n.ts │ ├── metadata.ts │ └── source.ts ├── mdx-components.tsx ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── proxy.ts ├── source.config.ts ├── tsconfig.json └── utils/ └── process-markdown-links.ts ================================================ FILE CONTENTS ================================================ ================================================ FILE: .env-example ================================================ GITHUB_APP_ID=app_id GITHUB_APP_PRIVATE_KEY="-----Base64 encoded GitHub App private key-----" ================================================ FILE: .gitignore ================================================ # deps /node_modules # generated content .contentlayer .content-collections .source # test & build /coverage /.next/ /out/ /build *.tsbuildinfo # misc .DS_Store *.pem /.pnp .pnp.js npm-debug.log* yarn-debug.log* yarn-error.log* # others .env*.local .vercel next-env.d.ts ================================================ FILE: CITATION.cff ================================================ cff-version: 1.2.0 title: AIcademy message: >- If you use this software, please cite it using the metadata from this file. type: software authors: - given-names: Epsilon repository-code: "https://github.com/aicademyorg/AIcademy" url: "https://theaicademy.org" abstract: A friendly community offering free AI education. license: MIT date-released: "2023-03-25" ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Code of Conduct AIcademy is a friendly place to learn about AI. We’re committed to keeping it that way. By using AIcademy, you agree to follow this Code of Conduct. In short: **Be kind**. **No harassment**, **trolling**, or **spamming**. - **Harassment**: We don’t allow behavior that targets or demeans individuals or groups. This includes offensive comments, unwanted attention, doxxing, stalking, slurs, or anything that makes others feel unsafe — regardless of gender, background, identity, ability, or beliefs. - **Trolling**: Provoking arguments, derailing discussions, or posting deliberately disruptive messages wastes everyone's time. Stay constructive and kind, even when disagreeing. - **Spamming**: Posting irrelevant links, excessive self-promotion, or repeatedly sharing off-topic content disrupts the learning experience. Keep the space clean and focused. If you see someone harassing, trolling, or spamming in any part of the AIcademy community (website, GitHub, discussions, discord etc.), please email us at [`hiaicademy@gmail.com`](mailto:hiaicademy@gmail.com) — ideally with a screenshot or link to the incident. The moderator team will take any action we believe necessary to keep AIcademy a safe, respectful space — including content removal or account bans. ================================================ FILE: CONTRIBUTING.md ================================================ # Contributing to AIcademy Thank you for your interest in contributing to AIcademy. Whether you're fixing a typo, improving content, or adding new features, your contributions are appreciated. ## How to Contribute 1. Fork this repository 2. Create a new branch 3. Make your changes 4. Open a pull request with a clear description Please keep changes focused and respectful. For questions or suggestions, feel free to open an issue or email us at `hiaicademy@gmail.com`. By contributing, you agree to follow our [Code of Conduct](https://github.com/aicademyorg/AIcademy/blob/main/CODE_OF_CONDUCT.md). ================================================ FILE: LICENSE ================================================ MIT License Copyright © 2025 AIcademy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================ # AIcademy AIcademy is a friendly community offering free AI education. ## Installation Ensure [pnpm](https://pnpm.io) is installed on your system. ``` # install the dependencies. pnpm install # start the development server pnpm dev ``` The server will be running at [http://localhost:3000](http://localhost:3000). ## Contributing Contributions are welcome! Whether you're improving content, fixing bugs, or adding new features, your help makes AIcademy better for everyone. > [Please follow these steps to contribute](/CONTRIBUTING.md). Recent Contributions: ![Alt](https://repobeats.axiom.co/api/embed/d4bca36f7e3aef4a00b262ce58cfba3d4d59575d.svg "Repobeats analytics image") ## License Copyright © 2025 AIcademy AIcademy is open-source and released under the MIT License. ================================================ FILE: SECURITY.md ================================================ # Security Policy At AIcademy, we take platform security seriously. While we don’t collect personal data or require sign-ups, we’re committed to keeping our open-source learning environment safe and trustworthy for everyone. ### Reporting a Vulnerability If you discover a security issue in our website or codebase, please report it privately by emailing: 📧 **hiaicademy@gmail.com** We appreciate responsible disclosures and will review all reports promptly. Please avoid public disclosure until we’ve had a chance to investigate and address the issue. Thank you for helping keep AIcademy safe. ================================================ FILE: app/[lang]/(home)/layout.tsx ================================================ import type { ReactNode } from "react"; import { HomeLayout } from "fumadocs-ui/layouts/home"; import { baseOptions, linkItems } from "@/app/layout.config"; import { NavbarMenu, NavbarMenuContent, NavbarMenuLink, NavbarMenuTrigger, } from "fumadocs-ui/layouts/home/navbar"; import { Footer } from "@/components/footer"; import Link from "fumadocs-core/link"; import Image from "next/image"; import Preview from "@/public/learn/python/banner.png"; import { Code } from "lucide-react"; export default async function Layout({ params, children, }: { params: Promise<{ lang: string }>; children: ReactNode; }) { const { lang } = await params; return ( Learn
Perview

Python

Learn Python for Data Science

Pytorch

Learn Pytorch

Deep Learning

Learn Deep Learning

Machine Learning

Learn machine learning

), }, { icon: , text: "Blog", url: "/blog", active: "nested-url", }, { icon: , text: "About", url: "/about", }, ...linkItems, ]} className="dark:bg-neutral-950 dark:[--color-fd-background:var(--color-neutral-950)]" > {children}