Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Automate CV Processing Code
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
2022-298
Automate CV Processing Code
Commits
df9a97b9
Commit
df9a97b9
authored
May 14, 2022
by
Chamila Dilshan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code 3
parent
2e7a7f15
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
code 3
code 3
+20
-0
No files found.
code 3
0 → 100644
View file @
df9a97b9
from IPython.display import Image
from IPython.core.display import HTML
Image(url= "https://www.researchgate.net/profile/Suraj-Rajendran-2/publication/341829993/figure/fig1/AS:898745348673537@1591288997886/General-Workflow-of-Text-Processing-and-Document-Classification
#load and display the shape of the dataset.
df = pd.read_csv("ResumeScreeningDataset.csv")
df.shape
(962, 2)
#first 10 rows of the df
df.head(10)
#info about the features/columns in df
df.info()
# check missing values in df
df.isna().sum()
Category 0
Resume 0
dtype: int64
# Values distribution of the label column (target) in df
df["Category"].value_counts()
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment