تخطي للذهاب إلى المحتوى

AI & Machine Learning Foundations

Start your AI journey here. This beginner-friendly course takes you from "what is AI?" all the way to building and evaluating your first machine-learning model — no advanced math required. You'll learn the core concepts, get hands-on with Python, and finish with a real predictive project and a certification.

الذكاء الاصطناعي تعلم الآلة الأساسي
  • 8 درسs
  • محدّث 05 سبتمبر, 2026
1 مسجّل بالفعل
تفاصيل الدورة
دورة خاصة
يرجى تسجيل الدخول لطلب الوصول
مكتمل
0 %

The two libraries you can't avoid

  • NumPy — fast numerical arrays and math. The engine under everything.
  • pandas — spreadsheets in code: the DataFrame. Load, filter, group, and clean data.

A typical first look at a dataset

import pandas as pd
df = pd.read_csv("sales.csv")
df.head()          # first rows
df.describe()      # summary stats
df["region"].value_counts()
df.groupby("region")["revenue"].mean()

The everyday toolkit

  • Selecting rows/columns, filtering with conditions.
  • Handling missing values (dropna, fillna).
  • Grouping & aggregating (groupby).
  • Merging datasets (merge).

Takeaway: most "AI" work is actually data work — and pandas is where it happens.

التقييم
0 0

لا توجد تعليقات حالياً.