- Iris (Iris plant datasets used – Classification)
- Boston (Boston house prices – Regression)
- Wine (Wine recognition set – Classification)
- Breast Cancer (Breast cancer wisconsin diagnostic – Classification)
- Digits (Optical recognition of handwritten digits dataset – Classification)
- Linnerud (Linnerrud dataset – Classification)
- Diabetes (Diabetes – Regression)
from sklearn import datasets
iris = datasets.load_iris()
boston = datasets.load_boston()
breast_cancer = datasets.load_breast_cancer()
diabetes = datasets.load_diabetes()
wine = datasets.load_wine()
datasets.load_linnerud()
digits = datasets.load_digits()
- Data (to be used for training)
- Labels (Target)
- Labels attriibute
- Description of the dataset
# Let's use IRIS as an example for reading different aspects of data
iris.data
iris.target
iris.target_names
print(iris.DESCR)
Latest posts by Ajitesh Kumar (see all)
- Agentic Reasoning Design Patterns in AI: Examples - October 18, 2024
- LLMs for Adaptive Learning & Personalized Education - October 8, 2024
- Sparse Mixture of Experts (MoE) Models: Examples - October 6, 2024
I found it very helpful. However the differences are not too understandable for me