Learn AI and LLMs from Scratch Using Free Resources

Listen to this Post

Featured Image
Ashish Pratap Singh has curated a GitHub repository containing the best free courses, articles, tutorials, and videos to master AI Engineering. The repository covers:
– Mathematical Foundations
– AI & ML Fundamentals
– Deep Learning & Specializations
– Generative AI
– Large Language Models (LLMs)
– Prompt Engineering Guides
– RAG, Agents, and MCP

🔗 GitHub Repository: https://lnkd.in/gn-uSt9J

You Should Know:

1. Setting Up Your AI Learning Environment

To get started with AI engineering, you need a proper setup. Here are essential commands to prepare your system:

For Linux (Ubuntu/Debian):

sudo apt update && sudo apt upgrade -y 
sudo apt install python3 python3-pip git -y 
pip3 install numpy pandas matplotlib scikit-learn tensorflow torch jupyterlab 

For Windows (PowerShell):

winget install Python.Python.3.10 
pip install numpy pandas matplotlib scikit-learn tensorflow torch jupyterlab 

2. Cloning the Repository

git clone https://github.com/ashishps1/learn-ai-engineering.git 
cd learn-ai-engineering 

3. Running Jupyter Notebook for Interactive Learning

jupyter lab 

4. Key AI/ML Commands