E.STEM Logo

AI Learning Lab

Experiment in your browser — no installation required.

Python AI Sandbox
# E.STEM AI Starter
import numpy as np
from sklearn import datasets

iris = datasets.load_iris()
X = iris.data[:, :2]
y = iris.target

print("Dataset loaded successfully!")
print(f"Features shape: {X.shape}")
print(f"Target classes: {np.unique(y)}")
Click “Run Code” to see sample output here…

Student Project Gallery

Chatbot by a 14-year-old learner

Plant Disease Detector — CV + data aug

Inventory Predictor — time-series