Data Science with Python

Jadilah Data Scientist profesional dalam 16 minggu. Pelajari statistik, visualisasi data, machine learning, dan deep learning dengan Python ecosystem terpopuler: NumPy, Pandas, Matplotlib, Scikit-learn, dan TensorFlow.

⏱️ 16 Minggu
📚 64 Modul
🎥 180+ Video
🐍 Python, Jupyter
NumPy Pandas Matplotlib Scikit-learn TensorFlow

🎥 Video Pembelajaran

Playlist pilihan untuk mendukung pembelajaran:

Minggu 1-2: Data Science Foundations

Dua minggu pertama membangun fondasi kuat untuk journey data science kamu. Kamu akan setup environment professional dengan Anaconda dan Jupyter, refresh Python skills, serta mempelajari fundamental matematika dan statistik yang diperlukan.

Week 1-2 Focus

Environment setup, Python refresher, dan math foundations

4 Modules

Modul 1: Pengenalan Data Science

⏱️ 60 menit

Pahami apa itu Data Science, perbedaan dengan AI dan Machine Learning, alur kerja seorang Data Scientist, dan berbagai career paths yang tersedia. Pengenalan ini akan memberi kamu peta perjalanan 16 minggu ke depan.

Topik yang akan dipelajari:

What is Data Science? Data Science vs AI vs ML Data Science Lifecycle (CRISP-DM) Roles: Data Analyst, DS, ML Engineer Tools Ecosystem Overview Industry Applications

📚 Resource Pembelajaran:

  • 🎬
    Data Science Full Course -freeCodeCamp
    Video YouTube • 12 jam
    Watch →
  • 📖
    IBM Data Science Introduction
    Article
    Read →
  • 📖
    Data Science Roadmap - Alex Freberg
    Roadmap Guide
    Read →

📝 Quiz

Apa kepanjangan dari CRISP-DM?

✏️ Latihan:

  • Buat mindmap alur kerja Data Science
  • Research 3 perusahaan yang hire Data Scientist
  • Identifikasi 5 industry yang menggunakan Data Science
  • Buat timeline 16 minggu study plan

Modul 2: Setup Environment (Anaconda, Jupyter)

⏱️ 90 menit

Setup environment development professional untuk Data Science. Anaconda distribusi memudahkan install semua packages yang diperlukan, sementara Jupyter Notebook menyediakan interactive coding experience yang powerful.

Topik yang akan dipelajari:

Download & Install Anaconda Conda Environments Jupyter Notebook Basics JupyterLab Overview VS Code Jupyter Extension Google Colab Introduction Essential Packages Installation

📚 Resource Pembelajaran:

  • 🎬
    Anaconda Installation Tutorial - Corey Schafer
    Video YouTube • 15 menit
    Watch →
  • 🎬
    Jupyter Notebook Tutorial - Sentdex
    Video YouTube • 20 menit
    Watch →
  • 📖
    Conda Cheat Sheet
    Reference
    Read →

📝 Quiz

Apa fungsi utama conda environments?

✏️ Latihan:

  • Install Anaconda dan verify installation
  • Create conda environment "ds-course"
  • Install numpy, pandas, matplotlib dalam environment
  • Buka Jupyter Notebook dan buat test notebook

Modul 3: Python Refresher for Data Science

⏱️ 120 menit

Refreshing Python skills dengan fokus pada fitur-fitur yang paling sering digunakan dalam Data Science: list/dict comprehensions, lambda functions, map/filter/reduce, dan working with files.

Topik yang akan dipelajari:

List & Dictionary Comprehensions Lambda Functions map(), filter(), reduce() Working with JSON files Working with CSV files Error Handling in Data Pipelines Pythonic Code Patterns

📚 Resource Pembelajaran:

  • 🎬
    Python Data Science Tutorial - Sentdex
    Video YouTube • 2 jam
    Watch →
  • 📖
    Real Python - Pythonicness
    Article
    Read →

📝 Quiz

Apa output dari [x**2 for x in range(4)]?

✏️ Latihan:

  • Read JSON file dan extract specific values
  • Write list of dictionaries ke CSV file
  • Filter list angka genap dengan filter()
  • Implementasikan data pipeline dengan error handling

Modul 4: Math & Statistics Fundamentals

⏱️ 120 menit

Matematika dan statistik adalah backbone dari Data Science. Module ini mencakup linear algebra (vectors, matrices), calculus basics, dan fundamental statistical concepts yang diperlukan untuk memahami ML algorithms.

Topik yang akan dipelajari:

Mean, Median, Mode Variance & Standard Deviation Percentiles & Quartiles Correlation Coefficient Vectors & Matrices Basics Matrix Operations Derivatives & Integrals Basics

📚 Resource Pembelajaran:

  • 🎬
    Statistics for Data Science -freeCodeCamp
    Video YouTube • 4 jam
    Watch →
  • 📖
    Khan Academy - Statistics
    Course
    Read →
  • 🎬
    3Blue1Brown - Linear Algebra
    Video Series
    Watch →

📝 Quiz

Apa perbedaan variance dan standard deviation?

✏️ Latihan:

  • Calculate mean, median, mode dari dataset manual
  • Implement standard deviation function dari scratch
  • Visualize normal distribution
  • Calculate correlation antara dua variabel

Modul 5: NumPy Arrays Deep Dive

⏱️ 120 menit

NumPy adalah foundation dari scientific computing in Python. Master arrays, indexing, slicing, dan broadcasting yang akan sering digunakan dalam data manipulation dan ML.

Topik yang akan dipelajari:

Creating NumPy Arrays Array Data Types Array Indexing & Slicing Boolean Indexing Reshaping Arrays Array Copy vs View Array Attributes (shape, dtype, ndim)

📚 Resource Pembelajaran:

  • 🎬
    NumPy Tutorial - Sentdex
    Video YouTube • 40 menit
    Watch →
  • 📖
    NumPy Official Tutorial
    Documentation
    Read →
  • 💻
    NumPy Exercises - W3Schools
    Practice
    Try →

📝 Quiz

Apa perbedaan array copy dan view dalam NumPy?

✏️ Latihan:

  • Create array dengan zeros, ones, arange, linspace
  • Extract sub-array menggunakan slicing
  • Gunakan boolean indexing untuk filter data
  • Compare copy vs view behavior

Modul 6: Array Operations & Broadcasting

⏱️ 90 menit

NumPy memungkinkan operasi element-wise pada arrays tanpa explicit loops. Broadcasting memungkinkan operasi antara arrays dengan different shapes - feature powerful yang fundamental untuk numerical computing.

Topik yang akan dipelajari:

Element-wise Operations Aggregation Functions (sum, mean, std) Axis-wise Operations Broadcasting Rules Matrix Multiplication (@, dot) Comparison Operations

📚 Resource Pembelajaran:

  • 🎬
    NumPy Broadcasting - Kevin Naughton
    Video YouTube • 15 menit
    Watch →
  • 📖
    NumPy Broadcasting - Official
    Documentation
    Read →

📝 Quiz

Apa hasil dari np.array([1,2,3]) + np.array([4,5,6])?

✏️ Latihan:

  • Implement matrix multiplication dari scratch
  • Normalize array menggunakan broadcasting
  • Calculate row-wise dan column-wise sums
  • Operasi aritmatika dengan scalar dan array

Modul 7: NumPy Statistical Functions

⏱️ 90 menit

NumPy menyediakan fungsi statistik yang optimized untuk numerical data. Pelajari cara menghitung descriptive statistics, percentiles, dan statistical distributions menggunakan NumPy.

Topik yang akan dipelajari:

np.mean(), np.median(), np.std() np.percentile(), np.quantile() np.var() for variance np.min(), np.max(), np.sum() np.argmin(), np.argmax() np.corrcoef() for correlation np.histogram()

📚 Resource Pembelajaran:

  • 🎬
    NumPy Statistics - freeCodeCamp
    Video YouTube • 1 jam
    Watch →
  • 📖
    NumPy Statistics Reference
    Documentation
    Read →

📝 Quiz

Fungsi mana untuk mendapat index dari nilai minimum dalam array?

✏️ Latihan:

  • Calculate semua descriptive statistics dari dataset
  • Find 25th, 50th, 75th percentiles
  • Implement basic statistics tanpa NumPy functions
  • Create histogram menggunakan np.histogram()

Modul 8: NumPy Exercises & Mini Project

⏱️ 90 menit

Konsolidasi pengetahuan NumPy dengan exercises intensive dan mini project. Kerjakan berbagai challenges untuk solidify pemahaman sebelum masuk ke Pandas.

Challenges:

Array manipulation challenges Matrix operations problems Statistical analysis tasks Image processing basics (as 2D arrays)

📚 Resource Pembelajaran:

  • 💻
    100 NumPy Exercises - GitHub
    Exercises
    Try →
  • 💻
    HackerRank - NumPy
    Challenges
    Try →

📝 Quiz

Apa kegunaan np.linalg.norm()?

Modul 9: Pandas Series & DataFrames

⏱️ 120 menit

Pelajari pandas series & dataframes. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Data Visualization Matplotlib Seaborn Dash/Streamlit

📚 Resource Pembelajaran:

  • 🎬
    Pandas Series & DataFrames - Resource 1
    Video YouTube
    Access →
  • 📖
    Pandas Series & DataFrames - Resource 2
    Article
    Access →
  • 💻
    Pandas Series & DataFrames - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 10: Data Loading (CSV, Excel, JSON)

⏱️ 90 menit

Pelajari data loading (csv, excel, json). Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Communication Presentations Reports Dashboarding

📚 Resource Pembelajaran:

  • 🎬
    Data Loading (CSV, Excel, JSON) - Resource 1
    Video YouTube
    Access →
  • 📖
    Data Loading (CSV, Excel, JSON) - Resource 2
    Article
    Access →
  • 💻
    Data Loading (CSV, Excel, JSON) - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 11: Data Cleaning & Preprocessing

⏱️ 120 menit

Pelajari data cleaning & preprocessing. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 41 Sub-topik 42 Sub-topik 43 Sub-topik 44

📚 Resource Pembelajaran:

  • 🎬
    Data Cleaning & Preprocessing - Resource 1
    Video YouTube
    Access →
  • 📖
    Data Cleaning & Preprocessing - Resource 2
    Article
    Access →
  • 💻
    Data Cleaning & Preprocessing - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 12: Data Wrangling (merge, join, concat)

⏱️ 120 menit

Pelajari data wrangling (merge, join, concat). Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 45 Sub-topik 46 Sub-topik 47 Sub-topik 48

📚 Resource Pembelajaran:

  • 🎬
    Data Wrangling (merge, join, concat) - Resource 1
    Video YouTube
    Access →
  • 📖
    Data Wrangling (merge, join, concat) - Resource 2
    Article
    Access →
  • 💻
    Data Wrangling (merge, join, concat) - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 13: Matplotlib Fundamentals

⏱️ 120 menit

Pelajari matplotlib fundamentals. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 49 Sub-topik 50 Sub-topik 51 Sub-topik 52

📚 Resource Pembelajaran:

  • 🎬
    Matplotlib Fundamentals - Resource 1
    Video YouTube
    Access →
  • 📖
    Matplotlib Fundamentals - Resource 2
    Article
    Access →
  • 💻
    Matplotlib Fundamentals - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 14: Seaborn Statistical Plots

⏱️ 120 menit

Pelajari seaborn statistical plots. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 53 Sub-topik 54 Sub-topik 55 Sub-topik 56

📚 Resource Pembelajaran:

  • 🎬
    Seaborn Statistical Plots - Resource 1
    Video YouTube
    Access →
  • 📖
    Seaborn Statistical Plots - Resource 2
    Article
    Access →
  • 💻
    Seaborn Statistical Plots - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 15: Interactive Plots with Plotly

⏱️ 90 menit

Pelajari interactive plots with plotly. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 57 Sub-topik 58 Sub-topik 59 Sub-topik 60

📚 Resource Pembelajaran:

  • 🎬
    Interactive Plots with Plotly - Resource 1
    Video YouTube
    Access →
  • 📖
    Interactive Plots with Plotly - Resource 2
    Article
    Access →
  • 💻
    Interactive Plots with Plotly - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 16: Data Visualization Project

⏱️ 120 menit

Pelajari data visualization project. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 61 Sub-topik 62 Sub-topik 63 Sub-topik 64

📚 Resource Pembelajaran:

  • 🎬
    Data Visualization Project - Resource 1
    Video YouTube
    Access →
  • 📖
    Data Visualization Project - Resource 2
    Article
    Access →
  • 💻
    Data Visualization Project - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 17: Descriptive Statistics

⏱️ 120 menit

Pelajari descriptive statistics. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 65 Sub-topik 66 Sub-topik 67 Sub-topik 68

📚 Resource Pembelajaran:

  • 🎬
    Descriptive Statistics - Resource 1
    Video YouTube
    Access →
  • 📖
    Descriptive Statistics - Resource 2
    Article
    Access →
  • 💻
    Descriptive Statistics - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 18: Probability Distributions

⏱️ 120 menit

Pelajari probability distributions. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 69 Sub-topik 70 Sub-topik 71 Sub-topik 72

📚 Resource Pembelajaran:

  • 🎬
    Probability Distributions - Resource 1
    Video YouTube
    Access →
  • 📖
    Probability Distributions - Resource 2
    Article
    Access →
  • 💻
    Probability Distributions - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 19: Hypothesis Testing

⏱️ 120 menit

Pelajari hypothesis testing. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 73 Sub-topik 74 Sub-topik 75 Sub-topik 76

📚 Resource Pembelajaran:

  • 🎬
    Hypothesis Testing - Resource 1
    Video YouTube
    Access →
  • 📖
    Hypothesis Testing - Resource 2
    Article
    Access →
  • 💻
    Hypothesis Testing - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 20: Correlation & Regression Analysis

⏱️ 120 menit

Pelajari correlation & regression analysis. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 77 Sub-topik 78 Sub-topik 79 Sub-topik 80

📚 Resource Pembelajaran:

  • 🎬
    Correlation & Regression Analysis - Resource 1
    Video YouTube
    Access →
  • 📖
    Correlation & Regression Analysis - Resource 2
    Article
    Access →
  • 💻
    Correlation & Regression Analysis - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 21: Intro to Machine Learning

⏱️ 90 menit

Pelajari intro to machine learning. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 81 Sub-topik 82 Sub-topik 83 Sub-topik 84

📚 Resource Pembelajaran:

  • 🎬
    Intro to Machine Learning - Resource 1
    Video YouTube
    Access →
  • 📖
    Intro to Machine Learning - Resource 2
    Article
    Access →
  • 💻
    Intro to Machine Learning - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 22: Supervised vs Unsupervised Learning

⏱️ 90 menit

Pelajari supervised vs unsupervised learning. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 85 Sub-topik 86 Sub-topik 87 Sub-topik 88

📚 Resource Pembelajaran:

  • 🎬
    Supervised vs Unsupervised Learning - Resource 1
    Video YouTube
    Access →
  • 📖
    Supervised vs Unsupervised Learning - Resource 2
    Article
    Access →
  • 💻
    Supervised vs Unsupervised Learning - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 23: Linear Regression

⏱️ 120 menit

Pelajari linear regression. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 89 Sub-topik 90 Sub-topik 91 Sub-topik 92

📚 Resource Pembelajaran:

  • 🎬
    Linear Regression - Resource 1
    Video YouTube
    Access →
  • 📖
    Linear Regression - Resource 2
    Article
    Access →
  • 💻
    Linear Regression - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 24: Logistic Regression

⏱️ 120 menit

Pelajari logistic regression. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 93 Sub-topik 94 Sub-topik 95 Sub-topik 96

📚 Resource Pembelajaran:

  • 🎬
    Logistic Regression - Resource 1
    Video YouTube
    Access →
  • 📖
    Logistic Regression - Resource 2
    Article
    Access →
  • 💻
    Logistic Regression - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 25: Decision Trees & Random Forests

⏱️ 120 menit

Pelajari decision trees & random forests. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 97 Sub-topik 98 Sub-topik 99 Sub-topik 100

📚 Resource Pembelajaran:

  • 🎬
    Decision Trees & Random Forests - Resource 1
    Video YouTube
    Access →
  • 📖
    Decision Trees & Random Forests - Resource 2
    Article
    Access →
  • 💻
    Decision Trees & Random Forests - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 26: K-Nearest Neighbors (KNN)

⏱️ 90 menit

Pelajari k-nearest neighbors (knn). Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 101 Sub-topik 102 Sub-topik 103 Sub-topik 104

📚 Resource Pembelajaran:

  • 🎬
    K-Nearest Neighbors (KNN) - Resource 1
    Video YouTube
    Access →
  • 📖
    K-Nearest Neighbors (KNN) - Resource 2
    Article
    Access →
  • 💻
    K-Nearest Neighbors (KNN) - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 27: Support Vector Machines (SVM)

⏱️ 120 menit

Pelajari support vector machines (svm). Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 105 Sub-topik 106 Sub-topik 107 Sub-topik 108

📚 Resource Pembelajaran:

  • 🎬
    Support Vector Machines (SVM) - Resource 1
    Video YouTube
    Access →
  • 📖
    Support Vector Machines (SVM) - Resource 2
    Article
    Access →
  • 💻
    Support Vector Machines (SVM) - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 28: K-Means Clustering

⏱️ 90 menit

Pelajari k-means clustering. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 109 Sub-topik 110 Sub-topik 111 Sub-topik 112

📚 Resource Pembelajaran:

  • 🎬
    K-Means Clustering - Resource 1
    Video YouTube
    Access →
  • 📖
    K-Means Clustering - Resource 2
    Article
    Access →
  • 💻
    K-Means Clustering - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 29: Model Evaluation & Metrics

⏱️ 120 menit

Pelajari model evaluation & metrics. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 113 Sub-topik 114 Sub-topik 115 Sub-topik 116

📚 Resource Pembelajaran:

  • 🎬
    Model Evaluation & Metrics - Resource 1
    Video YouTube
    Access →
  • 📖
    Model Evaluation & Metrics - Resource 2
    Article
    Access →
  • 💻
    Model Evaluation & Metrics - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 30: Cross Validation

⏱️ 90 menit

Pelajari cross validation. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 117 Sub-topik 118 Sub-topik 119 Sub-topik 120

📚 Resource Pembelajaran:

  • 🎬
    Cross Validation - Resource 1
    Video YouTube
    Access →
  • 📖
    Cross Validation - Resource 2
    Article
    Access →
  • 💻
    Cross Validation - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 31: Hyperparameter Tuning

⏱️ 120 menit

Pelajari hyperparameter tuning. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 121 Sub-topik 122 Sub-topik 123 Sub-topik 124

📚 Resource Pembelajaran:

  • 🎬
    Hyperparameter Tuning - Resource 1
    Video YouTube
    Access →
  • 📖
    Hyperparameter Tuning - Resource 2
    Article
    Access →
  • 💻
    Hyperparameter Tuning - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 32: Feature Engineering

⏱️ 120 menit

Pelajari feature engineering. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 125 Sub-topik 126 Sub-topik 127 Sub-topik 128

📚 Resource Pembelajaran:

  • 🎬
    Feature Engineering - Resource 1
    Video YouTube
    Access →
  • 📖
    Feature Engineering - Resource 2
    Article
    Access →
  • 💻
    Feature Engineering - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 33: Neural Network Basics

⏱️ 120 menit

Pelajari neural network basics. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 129 Sub-topik 130 Sub-topik 131 Sub-topik 132

📚 Resource Pembelajaran:

  • 🎬
    Neural Network Basics - Resource 1
    Video YouTube
    Access →
  • 📖
    Neural Network Basics - Resource 2
    Article
    Access →
  • 💻
    Neural Network Basics - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 34: TensorFlow/Keras Setup

⏱️ 60 menit

Pelajari tensorflow/keras setup. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 133 Sub-topik 134 Sub-topik 135 Sub-topik 136

📚 Resource Pembelajaran:

  • 🎬
    TensorFlow/Keras Setup - Resource 1
    Video YouTube
    Access →
  • 📖
    TensorFlow/Keras Setup - Resource 2
    Article
    Access →
  • 💻
    TensorFlow/Keras Setup - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 35: Building Neural Networks

⏱️ 120 menit

Pelajari building neural networks. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 137 Sub-topik 138 Sub-topik 139 Sub-topik 140

📚 Resource Pembelajaran:

  • 🎬
    Building Neural Networks - Resource 1
    Video YouTube
    Access →
  • 📖
    Building Neural Networks - Resource 2
    Article
    Access →
  • 💻
    Building Neural Networks - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 36: Convolutional Neural Networks (CNN)

⏱️ 150 menit

Pelajari convolutional neural networks (cnn). Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 141 Sub-topik 142 Sub-topik 143 Sub-topik 144

📚 Resource Pembelajaran:

  • 🎬
    Convolutional Neural Networks (CNN) - Resource 1
    Video YouTube
    Access →
  • 📖
    Convolutional Neural Networks (CNN) - Resource 2
    Article
    Access →
  • 💻
    Convolutional Neural Networks (CNN) - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 37: NLP Fundamentals

⏱️ 120 menit

Pelajari nlp fundamentals. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 145 Sub-topik 146 Sub-topik 147 Sub-topik 148

📚 Resource Pembelajaran:

  • 🎬
    NLP Fundamentals - Resource 1
    Video YouTube
    Access →
  • 📖
    NLP Fundamentals - Resource 2
    Article
    Access →
  • 💻
    NLP Fundamentals - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 38: Text Processing with NLTK

⏱️ 120 menit

Pelajari text processing with nltk. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 149 Sub-topik 150 Sub-topik 151 Sub-topik 152

📚 Resource Pembelajaran:

  • 🎬
    Text Processing with NLTK - Resource 1
    Video YouTube
    Access →
  • 📖
    Text Processing with NLTK - Resource 2
    Article
    Access →
  • 💻
    Text Processing with NLTK - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 39: Sentiment Analysis

⏱️ 120 menit

Pelajari sentiment analysis. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 153 Sub-topik 154 Sub-topik 155 Sub-topik 156

📚 Resource Pembelajaran:

  • 🎬
    Sentiment Analysis - Resource 1
    Video YouTube
    Access →
  • 📖
    Sentiment Analysis - Resource 2
    Article
    Access →
  • 💻
    Sentiment Analysis - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 40: Time Series Analysis

⏱️ 120 menit

Pelajari time series analysis. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 157 Sub-topik 158 Sub-topik 159 Sub-topik 160

📚 Resource Pembelajaran:

  • 🎬
    Time Series Analysis - Resource 1
    Video YouTube
    Access →
  • 📖
    Time Series Analysis - Resource 2
    Article
    Access →
  • 💻
    Time Series Analysis - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 41: SQL for Data Science

⏱️ 120 menit

Pelajari sql for data science. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 161 Sub-topik 162 Sub-topik 163 Sub-topik 164

📚 Resource Pembelajaran:

  • 🎬
    SQL for Data Science - Resource 1
    Video YouTube
    Access →
  • 📖
    SQL for Data Science - Resource 2
    Article
    Access →
  • 💻
    SQL for Data Science - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 42: Big Data with PySpark

⏱️ 120 menit

Pelajari big data with pyspark. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 165 Sub-topik 166 Sub-topik 167 Sub-topik 168

📚 Resource Pembelajaran:

  • 🎬
    Big Data with PySpark - Resource 1
    Video YouTube
    Access →
  • 📖
    Big Data with PySpark - Resource 2
    Article
    Access →
  • 💻
    Big Data with PySpark - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 43: MLflow for ML Pipelines

⏱️ 90 menit

Pelajari mlflow for ml pipelines. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 169 Sub-topik 170 Sub-topik 171 Sub-topik 172

📚 Resource Pembelajaran:

  • 🎬
    MLflow for ML Pipelines - Resource 1
    Video YouTube
    Access →
  • 📖
    MLflow for ML Pipelines - Resource 2
    Article
    Access →
  • 💻
    MLflow for ML Pipelines - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 44: Model Deployment with Flask

⏱️ 120 menit

Pelajari model deployment with flask. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 173 Sub-topik 174 Sub-topik 175 Sub-topik 176

📚 Resource Pembelajaran:

  • 🎬
    Model Deployment with Flask - Resource 1
    Video YouTube
    Access →
  • 📖
    Model Deployment with Flask - Resource 2
    Article
    Access →
  • 💻
    Model Deployment with Flask - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 45: Docker for Data Science

⏱️ 120 menit

Pelajari docker for data science. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 177 Sub-topik 178 Sub-topik 179 Sub-topik 180

📚 Resource Pembelajaran:

  • 🎬
    Docker for Data Science - Resource 1
    Video YouTube
    Access →
  • 📖
    Docker for Data Science - Resource 2
    Article
    Access →
  • 💻
    Docker for Data Science - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 46: Capstone Project Part 1

⏱️ 180 menit

Pelajari capstone project part 1. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 181 Sub-topik 182 Sub-topik 183 Sub-topik 184

📚 Resource Pembelajaran:

  • 🎬
    Capstone Project Part 1 - Resource 1
    Video YouTube
    Access →
  • 📖
    Capstone Project Part 1 - Resource 2
    Article
    Access →
  • 💻
    Capstone Project Part 1 - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 47: Capstone Project Part 2

⏱️ 180 menit

Pelajari capstone project part 2. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 185 Sub-topik 186 Sub-topik 187 Sub-topik 188

📚 Resource Pembelajaran:

  • 🎬
    Capstone Project Part 2 - Resource 1
    Video YouTube
    Access →
  • 📖
    Capstone Project Part 2 - Resource 2
    Article
    Access →
  • 💻
    Capstone Project Part 2 - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 48: Capstone Project Part 3

⏱️ 180 menit

Pelajari capstone project part 3. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 189 Sub-topik 190 Sub-topik 191 Sub-topik 192

📚 Resource Pembelajaran:

  • 🎬
    Capstone Project Part 3 - Resource 1
    Video YouTube
    Access →
  • 📖
    Capstone Project Part 3 - Resource 2
    Article
    Access →
  • 💻
    Capstone Project Part 3 - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 49: Data Storytelling

⏱️ 90 menit

Pelajari data storytelling. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 193 Sub-topik 194 Sub-topik 195 Sub-topik 196

📚 Resource Pembelajaran:

  • 🎬
    Data Storytelling - Resource 1
    Video YouTube
    Access →
  • 📖
    Data Storytelling - Resource 2
    Article
    Access →
  • 💻
    Data Storytelling - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 50: A/B Testing

⏱️ 90 menit

Pelajari a/b testing. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 197 Sub-topik 198 Sub-topik 199 Sub-topik 200

📚 Resource Pembelajaran:

  • 🎬
    A/B Testing - Resource 1
    Video YouTube
    Access →
  • 📖
    A/B Testing - Resource 2
    Article
    Access →
  • 💻
    A/B Testing - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 51: Apache Airflow Basics

⏱️ 120 menit

Pelajari apache airflow basics. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 201 Sub-topik 202 Sub-topik 203 Sub-topik 204

📚 Resource Pembelajaran:

  • 🎬
    Apache Airflow Basics - Resource 1
    Video YouTube
    Access →
  • 📖
    Apache Airflow Basics - Resource 2
    Article
    Access →
  • 💻
    Apache Airflow Basics - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 52: ETL Pipelines

⏱️ 120 menit

Pelajari etl pipelines. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 205 Sub-topik 206 Sub-topik 207 Sub-topik 208

📚 Resource Pembelajaran:

  • 🎬
    ETL Pipelines - Resource 1
    Video YouTube
    Access →
  • 📖
    ETL Pipelines - Resource 2
    Article
    Access →
  • 💻
    ETL Pipelines - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 53: Dashboard with Streamlit

⏱️ 120 menit

Pelajari dashboard with streamlit. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 209 Sub-topik 210 Sub-topik 211 Sub-topik 212

📚 Resource Pembelajaran:

  • 🎬
    Dashboard with Streamlit - Resource 1
    Video YouTube
    Access →
  • 📖
    Dashboard with Streamlit - Resource 2
    Article
    Access →
  • 💻
    Dashboard with Streamlit - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 54: Git for Data Projects

⏱️ 60 menit

Pelajari git for data projects. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 213 Sub-topik 214 Sub-topik 215 Sub-topik 216

📚 Resource Pembelajaran:

  • 🎬
    Git for Data Projects - Resource 1
    Video YouTube
    Access →
  • 📖
    Git for Data Projects - Resource 2
    Article
    Access →
  • 💻
    Git for Data Projects - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 55: Kaggle Competition Basics

⏱️ 90 menit

Pelajari kaggle competition basics. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 217 Sub-topik 218 Sub-topik 219 Sub-topik 220

📚 Resource Pembelajaran:

  • 🎬
    Kaggle Competition Basics - Resource 1
    Video YouTube
    Access →
  • 📖
    Kaggle Competition Basics - Resource 2
    Article
    Access →
  • 💻
    Kaggle Competition Basics - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 56: Portfolio Building

⏱️ 90 menit

Pelajari portfolio building. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 221 Sub-topik 222 Sub-topik 223 Sub-topik 224

📚 Resource Pembelajaran:

  • 🎬
    Portfolio Building - Resource 1
    Video YouTube
    Access →
  • 📖
    Portfolio Building - Resource 2
    Article
    Access →
  • 💻
    Portfolio Building - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 57: Resume & Interview Prep

⏱️ 90 menit

Pelajari resume & interview prep. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 225 Sub-topik 226 Sub-topik 227 Sub-topik 228

📚 Resource Pembelajaran:

  • 🎬
    Resume & Interview Prep - Resource 1
    Video YouTube
    Access →
  • 📖
    Resume & Interview Prep - Resource 2
    Article
    Access →
  • 💻
    Resume & Interview Prep - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 58: Data Science Career Paths

⏱️ 60 menit

Pelajari data science career paths. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 229 Sub-topik 230 Sub-topik 231 Sub-topik 232

📚 Resource Pembelajaran:

  • 🎬
    Data Science Career Paths - Resource 1
    Video YouTube
    Access →
  • 📖
    Data Science Career Paths - Resource 2
    Article
    Access →
  • 💻
    Data Science Career Paths - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 59: Advanced Pandas Tricks

⏱️ 90 menit

Pelajari advanced pandas tricks. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 233 Sub-topik 234 Sub-topik 235 Sub-topik 236

📚 Resource Pembelajaran:

  • 🎬
    Advanced Pandas Tricks - Resource 1
    Video YouTube
    Access →
  • 📖
    Advanced Pandas Tricks - Resource 2
    Article
    Access →
  • 💻
    Advanced Pandas Tricks - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 60: Optimization Techniques

⏱️ 90 menit

Pelajari optimization techniques. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 237 Sub-topik 238 Sub-topik 239 Sub-topik 240

📚 Resource Pembelajaran:

  • 🎬
    Optimization Techniques - Resource 1
    Video YouTube
    Access →
  • 📖
    Optimization Techniques - Resource 2
    Article
    Access →
  • 💻
    Optimization Techniques - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 61: Bayesian Statistics Intro

⏱️ 120 menit

Pelajari bayesian statistics intro. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 241 Sub-topik 242 Sub-topik 243 Sub-topik 244

📚 Resource Pembelajaran:

  • 🎬
    Bayesian Statistics Intro - Resource 1
    Video YouTube
    Access →
  • 📖
    Bayesian Statistics Intro - Resource 2
    Article
    Access →
  • 💻
    Bayesian Statistics Intro - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 62: Reinforcement Learning Basics

⏱️ 120 menit

Pelajari reinforcement learning basics. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 245 Sub-topik 246 Sub-topik 247 Sub-topik 248

📚 Resource Pembelajaran:

  • 🎬
    Reinforcement Learning Basics - Resource 1
    Video YouTube
    Access →
  • 📖
    Reinforcement Learning Basics - Resource 2
    Article
    Access →
  • 💻
    Reinforcement Learning Basics - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 63: Final Project

⏱️ 180 menit

Pelajari final project. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 249 Sub-topik 250 Sub-topik 251 Sub-topik 252

📚 Resource Pembelajaran:

  • 🎬
    Final Project - Resource 1
    Video YouTube
    Access →
  • 📖
    Final Project - Resource 2
    Article
    Access →
  • 💻
    Final Project - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4

Modul 64: Graduation & Next Steps

⏱️ 60 menit

Pelajari graduation & next steps. Module inicover fundamental concepts, practical applications, dan hands-on exercises yang akan membangun pemahaman mendalam tentang topik ini.

Topik yang akan dipelajari:

Sub-topik 253 Sub-topik 254 Sub-topik 255 Sub-topik 256

📚 Resource Pembelajaran:

  • 🎬
    Graduation & Next Steps - Resource 1
    Video YouTube
    Access →
  • 📖
    Graduation & Next Steps - Resource 2
    Article
    Access →
  • 💻
    Graduation & Next Steps - Resource 3
    Interactive Course
    Access →

📝 Quiz

Quiz question placeholder?

✏️ Latihan:

  • Exercise 1
  • Exercise 2
  • Exercise 3
  • Exercise 4