Part 1: Core Python Built-in Functions (Most Important ~70) abs() aiter() all() any() anext() ascii() bin() bool() breakpoint() bytearray() bytes() callable() chr() classmethod() compile() complex() delattr() dict() dir() divmod() enumerate() eval() exec() filter() float() format() frozenset() getattr() globals() hasattr() hash() help() hex() id() input() int() isinstance() issubclass() iter() len() list() locals() map() max() ...
✅ 1. Supervised Learning Models ๐ Regression (predict numbers) Linear Regression Ridge Regression Lasso Regression ElasticNet Decision Tree Regressor Random Forest Regressor Support Vector Regression (SVR) K-Nearest Neighbors Regressor ๐ Classification (predict labels) Logistic Regression Decision Tree Classifier Random Forest Classifier Support Vector Machine (SVC) K-Nearest Neighbors (KNN) Naive Bayes: GaussianNB MultinomialNB BernoulliNB SGD Classifier Perceptron Ridge Classifier ๐ 2. Unsupervised Learning Models ๐ Clustering K-Means DBSCAN Agglomerative Clustering Mean Shift Spectral Clustering Birch ๐ Dimensionality Reduction PCA (Principal Component Analysis) Kernel PCA Truncated SVD t-SNE (for visualization) Factor Analysis ๐ Outlier Detection One-Class SVM Isolation Forest Local Outlier Factor (LOF) ⚙️ 3. Model Selection & Optimization (not models, but important tools) ...