Spaces:
Build error
Build error
Upload 11 files
Browse files- CBRSdata.db +0 -0
- Career _Isometric.png +0 -0
- Career _Outline.png +0 -0
- Team.png +0 -0
- career.png +0 -0
- careerPredictionModel.ipynb +0 -0
- db.py +24 -0
- mldata.csv +0 -0
- undraw_Success_factors.png +0 -0
- undraw_online_resume.png +0 -0
- weights.pkl +3 -0
CBRSdata.db
ADDED
|
File without changes
|
Career _Isometric.png
ADDED
|
Career _Outline.png
ADDED
|
Team.png
ADDED
|
career.png
ADDED
|
careerPredictionModel.ipynb
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
db.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import sqlite3
|
| 2 |
+
conn = sqlite3.connect('CBRSdata.db', check_same_thread=False)
|
| 3 |
+
c = conn.cursor()
|
| 4 |
+
|
| 5 |
+
def create_table():
|
| 6 |
+
c.execute('CREATE TABLE IF NOT EXISTS predictiontable(Name TEXT,Contact_Number INTEGER,Email_address TEXT,Logical_quotient_rating INTEGER, coding_skills_rating INTEGER, hackathons INTEGER, public_speaking_points INTEGER, self_learning_capability TEXT, Extra_courses_did TEXT, Taken_inputs_from_seniors_or_elders TEXT, worked_in_teams_ever TEXT, Introvert TEXT, reading_and_writing_skills TEXT, memory_capability_score TEXT, smart_or_hard_work TEXT, Management_or_Techinical TEXT, Interested_subjects TEXT, Interested_Type_of_Books TEXT, certifications TEXT, workshops TEXT, Type_of_company_want_to_settle_in TEXT, interested_career_area TEXT)')
|
| 7 |
+
|
| 8 |
+
|
| 9 |
+
def add_data(Name,Contact_Number,Email_address,Logical_quotient_rating, coding_skills_rating,
|
| 10 |
+
hackathons, public_speaking_points, self_learning_capability,
|
| 11 |
+
Extra_courses_did, Taken_inputs_from_seniors_or_elders,worked_in_teams_ever,
|
| 12 |
+
Introvert, reading_and_writing_skills, memory_capability_score, smart_or_hard_work,
|
| 13 |
+
Management_or_Techinical, Interested_subjects, Interested_Type_of_Books,certifications,
|
| 14 |
+
workshops, Type_of_company_want_to_settle_in, interested_career_area):
|
| 15 |
+
|
| 16 |
+
c.execute('INSERT INTO predictiontable(Name,Contact_Number,Email_address,Logical_quotient_rating, coding_skills_rating, hackathons, public_speaking_points, self_learning_capability, Extra_courses_did, Taken_inputs_from_seniors_or_elders,worked_in_teams_ever,Introvert, reading_and_writing_skills, memory_capability_score, smart_or_hard_work, Management_or_Techinical, Interested_subjects, Interested_Type_of_Books,certifications, workshops, Type_of_company_want_to_settle_in, interested_career_area) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)',
|
| 17 |
+
(Name,Contact_Number,Email_address,Logical_quotient_rating,
|
| 18 |
+
coding_skills_rating, hackathons, public_speaking_points, self_learning_capability,
|
| 19 |
+
Extra_courses_did, Taken_inputs_from_seniors_or_elders,worked_in_teams_ever,Introvert,
|
| 20 |
+
reading_and_writing_skills, memory_capability_score, smart_or_hard_work,
|
| 21 |
+
Management_or_Techinical, Interested_subjects, Interested_Type_of_Books,certifications,
|
| 22 |
+
workshops, Type_of_company_want_to_settle_in, interested_career_area))
|
| 23 |
+
conn.commit()
|
| 24 |
+
|
mldata.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
undraw_Success_factors.png
ADDED
|
undraw_online_resume.png
ADDED
|
weights.pkl
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd7ea437869d047c92b321ddc055bf9d7bbd8c0de26891aeee1d4b2d626fbf1d
|
| 3 |
+
size 1020163
|