FAM FINAL MICROPROJECT (1)
FAM FINAL MICROPROJECT (1)
MICRO-PROJECT REPORT
1) PRATIKSHA MUNDHE
2) EN.NO. 23511510065
This is to certify that Mr./ Ms Pratiksha Arun Mundhe of 5th Semester of Diploma in
Artificial Intelligence and Machine Learning of Institute Shreeyash College Of
Engineering And Technology (polytechnic) has successfully completed Micro-Project
Work in Course of Fundamentals of AI & ML Algorithm for the academic year 2024-25
as prescribed in the I-Scheme Curriculum.
1) PRATIKSHA MUNDHE
2) EN.NO:. 23511510065
Micro-Project Proposal
Proposed Methodology:
Resources Required :
2 Wikipedia Internet 1
3 Fundamentals of AI &ML textbook 1
Micro-Project Report
Rational :
Identify Influencers: Understand factors affecting student performance, like socio-
economic status and study habits.
Data-Driven Insights: Use quantitative and qualitative data for evidence-based
recommendations.
Promote Equity: Address barriers to ensure all students receive necessary support.
Support Educators: Provide actionable insights to improve teaching strategies and
policies. Engage Students: Foster awareness and motivation among students regarding
their learning. Long-Term Success: Enhance academic outcomes for better future
opportunities.
Benefits:
Improved Learning Strategies:
Targeted Support
Informed Policy Decisions:
Enhanced Student Engagement
Academic Equity:
Long-term Success
Actual Methodology :
Research Design
Mixed-Methods Approach: Combine quantitative and qualitative methods to gain acomprehensive
understanding of student performance.
Data Collection
Quantitative Data:
Surveys: Design a structured questionnaire to gather demographic information, study habits,attendance
records, and self-reported performance. Distribute to a representative sample of students.
Academic Records: Collect exam scores and grades from school databases for the selectedsample.
Qualitative Data:
Interviews: Conduct semi-structured interviews with a subset of students, teachers, andacademic
advisors to explore factors influencing performance in depth.
Focus Groups: Organize focus groups with students to discuss challenges, resources, andperceptions about
their performance.
Sample Selection
Stratified Sampling: Ensure a diverse sample by selecting participants from different grades, socio-
economic backgrounds, and academic levels. Aim for at least 200 students
Data Analysis
Quantitative Analysis:
Use statistical software (e.g., SPSS, R) to perform:
Descriptive statistics to summarize demographics and performance data.
Correlation and regression analysis to identify relationships between variables (e.g., studyhabits
and exam scores).
Qualitative Analysis:
Transcribe interviews and focus group discussions.
Use coding techniques to identify key themes and patterns, employing software
Triangulation
Compare and contrast findings from quantitative and qualitative analyses to validate resultsand draw
comprehensive conclusions.
Interpretation of ResultsAnalyze findings in relation to research questions, discussing the implications
for educators,students, and policymakers.
Recommendations
Develop actionable recommendations based on data insights to improve student performance, such as
tailored study programs, mentoring initiatives, or resource allocation.
Reporting
Compile a detailed report summarizing the methodology, findings, and recommendations,including visual
representations (charts, graphs) for clarity.
Feedback and Iteration
Present findings to stakeholders (educators, administrators, students) to gather feedback andrefine
recommendations as necessary.
Follow-up Evaluation
Plan a follow-up study to assess the impact of implemented recommendations on studentperformance,
etablishing metrics for success.
Mount Repository
Mounted at /content/drive
!ls /content/drive/MyDrive/
Import Libraries
import pandas as pd
from sklearn.model_selection import
train_test_split from
sklearn.linear_model import
LogisticRegression from
sklearn.metrics import
confusion_matrix
import seaborn as sns
import
matplotlib.pyplot as
plt import
tensorflow as tf
Dataset Analysis
Importing Dataset
df = pd.read_csv('/content/drive/MyDrive/exams.csv')
Head Records
df.head()
gender race/ethnicity parental level of education lunch test preparation course math score reading score writing
score
df.tail()
df.info()
Check Null
df.isnull().sum
Describe Dataset
df.describe()
df.columns
df['math score'].value_counts()
sns.countplot(x='writing score',
data=df) plt.title('writing score
Distribution')
plt.show()
Duplicate Dataset
df1=df
from sklearn.preprocessing
import LabelEncoder temp
= LabelEncoder()
df1['gender'] = temp.fit_transform(df1['gender'])
df1
Assign X and Y
X =df1.drop('writing
score',axis=1) y
=df1['writing score']
y =df1['gender']
X.shape
(1000, 3)
X_train,X_test,Y_train,Y_test=train_test_split(X,y,test_size=0.2,random_state=42)
X_train.shape
(800, 3)
X_test.shape
(200, 7)
Y_train.shape
(800,)
Y_test.shape
(200,)
model = LogisticRegression()
model.fit(X_train,Y_train)
LogisticRegression()
Predict Testing
model.predict(X_test)
Check Score
model.score(X
_test,Y_tes
t) 1.0
Add predict to new variable y-pred
Y_pred = model.predict(X_test)
cm=
confusion_matrix(Y_test,Y_pre
d) print("Confusion
matrix") print(cm)
Confusion matrix
[[101 0]
[ 0 99]]
Conclusion:
In conclusion, student performance in exam projects is influenced by a multifaceted interplayof cognitive,
emotional, and environmental factors. The findings highlight that prior knowledge, motivation, and effective
collaboration significantly contribute to successful project outcomes. Furthermore, the integration of technology
can enhance engagement and facilitate deeper learning.
Ultimately, fostering a supportive learning environment that encourages collaboration, critical thinking, and
effective use of technology can significantly enhance student performance in exam projects. Future
research should continue to explore these dynamics tofurther inform teaching practices and improve student
outcomes
Reference:
www.google.com
www.greeksforgreek.com
www.javatpoint.com
MICRO-PROJECT EVOLUTION SHEET
(A) (B)
Process and Product Individual Presentation/ Total Marks
Assessment (6 Viva (4 marks) 10
marks)
Dated Signature:-