Wuzzuf, is a technology firm founded in 2009 and one of the very few companies in the MENA region specialized in developing Innovative Online Recruitment Solutions for top enterprises and organizations, They successfully served 10,000+ top companies and employers in Egypt, 1.5 MILLION CVs were viewed on their platform and 100,000+ job seekers directly hired through them. In total, 250,000+ open job vacancies were advertised and now, 500,000+ users visit their website each month looking for jobs at top Employers.
Wuzzuf, has released a sample dataset on Kaggle (Which provides data science competitions, Datasets, and Kernels), named Wuzzuf Job Posts. The dataset contains 2 CSV files:
-
Wuzzuf_Job_Posts_Sample.csv: which contains Wuzzuf job posts with following attributes:
-
id: post identifier
-
city_name: is the city of the job.
-
job_title: the title of the job
-
job_category_1, job_category_2 and job_category_3: which contains the most 3 relevant categories of the job post, e.g., Sales/Retail/Business Development
-
job_industry_1, job_industry_2 and job_industry_3: which contains the most 3 relevant industries of the job post, e.g., Telecommunications Services
-
salary_minimum and salary_maximum: the salary limits.
-
num_vacancies: how many open vacancies for this job post.
-
career_level: enumeration of career levels e.g., Experienced (Non-Manager) and Entry Level
-
experience_years: number of years of experience.
-
post_date: publication timestamp of the post. e.g., 2014-01-02 16:01:26
-
views: count of views
-
job_description: detailed description for the job post.
-
job_requirements: main job requirements for the job post.
-
payment_period: salary payment interval e.g. Per Month
-
currency: salary currency e.g. Egyptian Pound
-
-
Wuzzuf_Applications_Sample.csv.zip: Which contains Wuzzuf job applications, it have the following attributes:
-
id : application identifier
-
user_id: applicant identifier
-
job_id: post identifier
-
app_date: application timestamp, e.g., 2014-01-01 07:27:52
-
Data Cleaning
The published data-set had many free-text fields, Wuzzuf system does not enforce a certain list of items to choose for them, which makes processing and aggregation difficult. A common handling such as lower case all values and remove trailing spaces was performed. Additionally some fields needed special handling such as:
-
city_name:
-
this attribute is free text attribute, which represents Egyptian cities, but it has the following problems:
-
Misspelling of words. (i.e. cairo , ciro , ciaro).
-
Arabic names (i.e. القاهرة )
-
Outside Egypt cities (i.e. riyadh, doha)
-
General Cities (i.e. all egypt cities , any location)
-
Group of Cities (i.e."cairo, alexandria - damanhor")
-
-
All the above issues has been solved by:
-
Outside Egypt cities: a static list of outside cities has been mapped to category "outside".
-
Arabic (Non-ascii) names: has been replaced statically be the corresponding english words.
-
General Cities: a static list of outside cities has been mapped to category "any"
-
Remove Not Needed substrings such as "el" and "al".
-
Replace "and" and "or" substrings with "-" to be splitted on next steps.
-
Group of Cities : attribute has been splitted on several delimiters.
-
Misspelling of words: a static list of valid cities and its states in Egypt has been created , each misspelled word has been mapped to the most similar word of valid cities, a threshold T has been used to accept only similarities above that threshold, otherwise city will mapped to "any" category.
-
Added new state attribute by mapping each city_name to its state from valid cities & states categories.
-
-
-
job_category_1, job_category_2, job_category_3 attributes: cleaning was done by removing placeholder text "Select" from all 3 attributes, and merging the 3 attributes into one attribute called job_categoriesd
-
job_industry_1, job_industry_2, job_industry_3 attributes: cleaning was done by removing placeholder text "Select" from all 3 attributes, and merging the 3 attributes into one attribute called job_industries.
-
experience_years attribute: we manually normalizing free text onto one of 3 forms 'x+' or 'x-y' or 'x', and split the experience_years attribute to 2 new attributes experience_years_min and experience_years_max , which contains the minimum and maximum years respectively needed for a job.
-
post_date attribute: we generated a new attribute called "post_timestamp" which has the POSIX timestamp value of the post_date attribute (i.e., the number of seconds that have elapsed since January 1, 1970 midnight UTC/GMT)
-
job_description and job_requirements attributes: we noticed that job_requirements attribute are normally empty, so we added new derived attribute called "description" which contains the concatenation of job_requirements and job_description attributes.
Derived Attributes
The next step was deriving some attributes from these data sets. We derived the following attributes:
-
Tags attributes: we used a third party API from MeaningCloud to extract Tags from the "description" attribute (recall that it contains the data from job_description and job_requirements). Thus, we added to the data-set the following attributes:
-
quotation_list: which represents quoted text. e.g., you take on the responsibility of growing the Academy by increasing business and handling operational and technical challenges that arise in the process.
-
entity_list : which represents named entities as people, organization, places, etc. e.g. MS Office, Word, Excel, Weeks and Cairo
-
concept_list: which represents significant keywords. e.g., ability, system, software, code and computer science.
-
relation_list: This attribute could be used to provide a summary for the description attribute as it highlights most of the important notes from the description part.
-
money_expression_list: which represents money expressions, e.g., 2000 EGP
-
time_expression_list: which represents time expressions, e.g., 6 Months at least and 8.5 hours
-
other_expression_list: which contains other expressions such as alphanumeric patterns. e.g., php5
-
-
applications_count attribute to each post, which calculates how many applicants has been applied to this job post. (derived from applications data-set)
-
first_applicant_timestamp and last_applicant_timestamp attributes per each post, which calculates the POSIX timestamp of the first and last applicant that applied to this job post. (derived from applications data-set)
Case Study: Jobs Recommendation
Extracting tags from the jobs opens the doors for recommending jobs for applicants. We exploit the entity_list and concept_list attributes to rank the job posts that are relevant to the given applicant. On the other hand, we build a keywords vector from the applicant profile. The recommendation selection works calculating the 10 highest matching scores using a heuristic model.
As a proof of concept, we analyzed some applicants profiles (their private information such as names was removed for anonymity). The following is a sample of the analyzed profiles:
Our system recommends the following job posts to him (ordered from best or lowest):
-
System Administrator, with job_id = "8c872132", with score = 1.0
-
System Administrator, with job_id = "a13539c", with score = 1.0
-
System Administrator, with job_id = "c820bb65", with score = 1.0
-
Technical Support Engineer French Speaker, with job_id = "6783a66f", with score = 1.0
-
Data Entry & IT Technician, with job_id = "8c872132", with score = 1.0
-
Software Developer SharePoint, with job_id = "990d3300", with score = 1.0
-
.Net Developer, with job_id = "22a298c7", with score = 1.0
-
Operations Support Engineer, with job_id = "69318c48", with score = 1.0
-
Microsoft Product Manager, with job_id = "eb59b18d", with score = 0.8571
For further details about these job posts, check the dataset using these IDs.
Case Study: Job Summary
In some use cases, it is useful to summarize a bulk of text and get the most relevant information from a given text. As mentioned before, we added the relation_list attribute which highlights most of the important notes from the description part. Using this attribute, we can provide a short, yet descriptive, summary of the post. As an example, here is the original job post description and its summary for job post number 68417a3c.
Students/Undergraduates are acceptable.
Working as a promoter at Key Accounts' stores that sell OneCard Items like " Mobile and Electronic Chains in Egypt" required :
Daily contacting with the sales staff working at the store/s for:
Training them and handling their complaints.
Delivering all POS materials as much as possible “posters, flyers and danglers,,, etc” .
Following up the stock movement and sales volumes.
Updating our files with the dealers’ data base.
Getting feedback and requested info about the market and competitors.
Achieving the monthly targeted plan of performing successful No of presentation s for the end users at the store/s that is set by the Distribution Team leader / Supervisor/ Manager.
Sending reports of these presentations to the Distribution Team leader/Supervisor/ Manager on Daily basis.
Male/Female
Bachelor Degree
Good command and knowledge of Microsoft office (Word-Excel- Outlook)
Good writing and speaking English
highly Presentab
Having training and educating skills
Having selling Skills
Communication & Personal Effectiveness/ Interpersonal Skills
Building Relationships
Delivering Excellent Service / Service Orientation
Problem Solving
Marketing & Sales
Team Working
0 up to 2years experience in sales, distribution& marketing activities
Working as a promoter at Key Accounts' stores that sell OneCard Items like " Mobile and Electronic Chains in Egypt" required :
Updating our files with the dealers’ data base.
Getting feedback and requested info about the market and competitors.
Achieving the monthly targeted plan of performing successful No of presentation s for the end users at the store/s that is set by the Distribution Team leader / Supervisor/ Manager.
0 up to 2 years experience in sales, distribution& marketing activities
The original description contains around 1317 characters while the summarized one contains only 544 characters, which an approx 59% reduction in size.