Uploads
Uploads
• Specific: The project must be specific. Being specific includes detailing out the
project’s structure, goals, benefits, milestones and costs.
• Measurable: A clearly defined project must be measurable in terms of its
benefits and achievements. This should not only be in terms of monetary benefits
but also other tangible and intangible benefits derived from the project’s
execution.
• Achievable
• Relevant
• Time bound
Sample Footer Text
10/24/2024 7
Sample Footer Text
10/24/2024 8
Sample Footer Text
10/24/2024 9
Project categories
• A Fuzzy Logic IoT- Based Temperature and Humidity Control System for Smart
Buildings (Arduino – Fuzzy Logic).
• Human Activity Recognition Using Smartphones (UCI) – machine learning
(simulation)
• Soil monitoring (ph, moisture, water) (Arduino – IoT)
• Indoor air quality monitoring system based on the architecture of the Internet of
Things (Arduino – IoT)
What is Machine Learning (ML)?
https://www.mygreatlearning.com/blog/what-is-machine-learning/#2
import pandas as pd
irisdata = pd.read_csv ('iris2.csv')
X = irisdata.drop('Class', axis=1)
y = irisdata['Class']
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.20)
#Make prediction
y_pred = svclassifier.predict(X_test)