You are on page 1of 13

ARTIFICIAL INTELEGENCE AND

MACHINE LEARNING

BY
NITHISH A S
RITHISH K R
SHREYAS G K
VARUN S
CAMPUS PLACEMENT PREDICTION

• A CAMPUS PLACEMENT PREDICTION PROJECT AIMS TO


PREDICT THE CAMPUS PLACEMENT A USER IS LIKELY TO TYPE
BASED ON THE PRECEDING TEXT INPUT. IT TYPICALLY UTILIZES
MACHINE LEARNING MODELS TRAINED ON LARGE DATASETS OF
TEXT TO MAKE ACCURATE PREDICTIONS.
BENEFITS AND ADVANTAGES
1. INSIGHTFUL DECISION-MAKING:
1. AIML MODELS ANALYZE HISTORICAL PLACEMENT DATA, PROVIDING VALUABLE INSIGHTS INTO STUDENT
PERFORMANCE, SKILLS, AND TRENDS.
2. INSTITUTIONS CAN MAKE INFORMED DECISIONS BASED ON THESE INSIGHTS, ENHANCING THEIR PLACEMENT
STRATEGIES.

2. PERSONALIZED GUIDANCE FOR STUDENTS:


1. AIML ALGORITHMS PREDICT INDIVIDUAL PLACEMENT PROBABILITIES.
2. STUDENTS RECEIVE PERSONALIZED RECOMMENDATIONS, HELPING THEM FOCUS ON AREAS THAT NEED
IMPROVEMENT.
3. TAILORED GUIDANCE ENSURES BETTER PREPARATION FOR INTERVIEWS AND ASSESSMENTS.

3. EFFICIENT RESOURCE ALLOCATION:


1. INSTITUTIONS CAN ALLOCATE RESOURCES EFFECTIVELY BY IDENTIFYING HIGH-POTENTIAL STUDENTS.
2. TARGETED INTERVENTIONS, SUCH AS MOCK INTERVIEWS OR SKILL-BUILDING WORKSHOPS, CAN BE DIRECTED
WHERE THEY MATTER MOST.
SUMMARY

• TITLE: CAMPUS PLACEMENT PREDICTION PROJECT

• OBJECTIVE: TO DEVELOP A SYSTEM THAT PREDICTS THE CAMPUS PLACEMENT A


USER IS LIKELY TO TYPE BASED ON THEIR INPUT TEXT.

• APPROACH: UTILIZE MACHINE LEARNING TECHNIQUES, SUCH AS RECURRENT


NEURAL NETWORKS (RNNS) OR TRANSFORMER MODELS, TRAINED ON LARGE TEXT
CORPORA TO LEARN THE PATTERNS AND RELATIONSHIPS BETWEEN WORDS.
CODE

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Campus Recruitment Prediction</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #a5dacc;
margin: 0;
padding: 20px;
box-sizing: border-box;
}

.container {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
max-width: 1000px;
margin: 0 auto;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #333333;
}

.form-group {
margin-bottom: 15px;
}

label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #333333;
}

input[type="string"], select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

.submit-button {
width: 100%;
padding: 10px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Campus Recruitment Prediction</h1>
<form action="/submit" method="POST">
<div class="form-group">
<label for="gender">Gender:</label>
<select id="gender" name="gender" required>
<option value="0">Female</option>
<option value="1">Male</option>
</select>
</div>
<div class="form-group">
<label for="ssc_p">Secondary School Score:</label>
<input type="string" id="ssc_p" name="ssc_p" required>
</div>
<div class="form-group">
<label for="ssc_b">Secondary School Board:</label>
<select id="ssc_b" name="ssc_b" required>
<option value="1">Central</option>
<option value="0">Others</option>
</select>
</div>
<div class="form-group">
<label for="hsc_p">High School Score:</label>
<input type="string" id="hsc_p" name="hsc_p" required>
</div>
<div class="form-group">
<label for="hsc_b">High School Board:</label>
<select id="hsc_b" name="hsc_b" required>
<option value="1">Central</option>
<option value="0">Others</option>
</select>
</div>
<div class="form-group">
<label for="hsc_s">High School Stream:</label>
<select id="hsc_s" name="hsc_s" required>
<option value="Commerce">Commerce</option>
<option value="Science">Science</option>
<option value="Arts">Arts</option>
</select>
</div>
<div class="form-group">
<label for="degree_p">Degree Score:</label>
<input type="string" id="degree_p" name="degree_p" required>
</div>
<div class="form-group">
<label for="degree_t">Degree Stream:</label>
<select id="degree_t" name="degree_t" required>
<option value="Sci&Tech">Sci&Tech</option>
<option value="Comm&Mgmt">Comm&Mgmt</option>
<option value="Others">Others</option>
</select>
</div>
</div>
<div class="form-group">
<label for="workex">Work Experience:</label>
<select id="workex" name="workex" required>
<option value="1">Yes</option>
<option value="0">No</option>
</select>
</div>
<div class="form-group">
<label for="etest_p">ETest Score:</label>
<input type="string" id="etest_p" name="etest_p" required>
</div>
<div class="form-group">
<label for="specialisation">Specialisation:</label>
<select id="specialisation" name="specialisation" required>
<option value="1">Mkt&Fin</option>
<option value="0">Mkt&HR</option>
</select>
</div>
<div class="form-group">
<label for="mba_p">MBA Score:</label>
<input type="string" id="mba_p" name="mba_p" required>
</div>
<div class="form-group">
<label for="status">Status:</label>
<select id="status" name="status" required>
<option value="1">Placed</option>
<option value="0">Not Placed</option>
</select>
</div>
<input type="submit" class="submit-button" value="Submit">
</form>
</div>
</body>
</html>
OUTPUT
THANK YOU

You might also like