[go: up one dir, main page]

0% found this document useful (0 votes)
7 views2 pages

Index

The document outlines a series of experiments aimed at applying various machine learning techniques using Python. It includes tasks such as implementing regression models, visualizing data, handling missing values, and comparing different classifiers. Additionally, it covers clustering methods and performance evaluation metrics for machine learning models.

Uploaded by

devkp786
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views2 pages

Index

The document outlines a series of experiments aimed at applying various machine learning techniques using Python. It includes tasks such as implementing regression models, visualizing data, handling missing values, and comparing different classifiers. Additionally, it covers clustering methods and performance evaluation metrics for machine learning models.

Uploaded by

devkp786
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

INDEX

S. Experiment Aim Date of Remarks


No submission
1. Implement a simple Linear Regression model to
predict house prices using Python and a dataset.

2. Use a scatter plot to visualize the relationship


between features and the target variable in the
house price prediction task
3. Compare Supervised vs. Unsupervised learning by
describing key differences and providing one example
of each using Python datasets
4. Load a dataset of your choice and identify missing
values using Pandas. Write code to handle missing
data using techniques like mean, median, or mode
imputation.

5. Perform feature scaling (standardization and


normalization) on numerical data and visualize the
effect using histograms
6. Encode categorical variables using Label Encoding
and One-Hot Encoding, and discuss the difference
7. Create a Logistic Regression model to classify the
patients in the group having a rare disease or not.
Evaluate it using and Precision and recall values.

8. Implement a Decision Tree classifier on your


preferred dataset. Visualize the tree using graphing
libraries.

9. Compare the performance of Random Forest and K-


Nearest Neighbors (KNN) classifiers on the Car or
Mobile phone Quality Dataset using evaluation
metrics like precision, recall, and F1-score
10. Apply K-Means Clustering on the Mall Customer
Segmentation Dataset and visualize clusters with a 2D
scatter plot.
11. Implement Hierarchical Clustering on a dataset and
plot a dendrogram to analyse the clustering
structure.

12. Use Principal Component Analysis (PCA) for


dimensionality reduction on the Cancer Dataset and
visualize the data in two dimensions
13. Split a dataset into training and testing sets (e.g., 80-
20 split) using Scikit-learn and explain the importance
of this step in ML pipelines.

14. Compare a classification model’s performance using


multiple metrics: Accuracy, Confusion Matrix,
Precision, Recall, and AUC-ROC Curve (e.g., Logistic
Regression )

15. Use Grid Search to find the best hyperparameters for


an SVM model on preffered data set.

You might also like