Display device 106 may be any known display technology, including but not limited to display devices using Liquid Crystal Display (LCD) or Light Emitting Diode (LED) technology. Processor(s) 102 may use any known processor technology, including but not limited to graphics processors and multi-core processors. Input device 104 may be any known input device technology, including but not limited to a keyboard (including a virtual keyboard), mouse, track ball, and touch-sensitive pad or display. Bus 112 may be any known internal or external bus technology, including but not limited to ISA, EISA, PCI, PCI Express, NuBus, USB, Serial ATA or FireWire. Computer-readable medium 110 may be any medium that participates in providing instructions to processor(s) 102 for execution, including without limitation, non-volatile storage media (e.g., optical disks, magnetic disks, flash drives, etc.), or volatile media (e.g., SDRAM, ROM, etc.).
Computer-readable medium 110 may include various instructions 114 for implementing an operating system (e.g., Mac OS®, Windows®, Linux). The operating system may be multi-user, multiprocessing, multitasking, multithreading, real-time, and the like. The operating system may perform basic tasks, including but not limited to: recognizing input from input device 104; sending output to display device 106; keeping track of files and directories on computer-readable medium 110; controlling peripheral devices (e.g., disk drives, printers, etc.) which can be controlled directly or through an I/O controller; and managing traffic on bus 112. Network communications instructions 116 may establish and maintain network connections (e.g., software for implementing communication protocols, such as TCP/IP, HTTP, Ethernet, etc.).
The screening process can be utilized to determine the probability that a resume is of interest. For example, if 1000 resumes are submitted for a particular position, the screening process can provide a probability of relevance for each resume and rank the order of the resumes according to the probability of relevance rankings In this way, a hiring person can determine almost immediately which resumes are the most important. This may be valuable, for example, when it is important to make an early contact for a prime candidate for a position, rather than waiting several weeks or months to get to that particular resume in a list or pile of resumes. This process can also, for example, cut down significantly on the amount of time it takes to review resumes. For example, when a probability is given for each resume, a hiring person can start reviewing the resumes with the highest probabilities first in order to maximize the chances that the most relevant or desirable hires are reviewed and interviewed first. The screening process can also, for example, cut down on the time it takes to interview a candidate. For example, if a resume is determined to be a very good candidate, the first pre-screening interview can focus on language skills and personality, instead of qualifications, which can result in a significant reduction of the time spent in the first interview.
In some embodiments, resumes that are determined to have a low probability of relevance can be reviewed, and if it is determined that they should have a higher probability of relevance, these can be fed into the system in order to better train the system. In a similar way, resumes that are determined to have a high probability of relevance can be reviewed, and if it is determined that they should have a lower probability of relevance, these can be fed into the system in order to better train the system.
With respect to the model training, two folders of PDF documents can be created, one with examples of good candidates or resumes, and one with examples of bad candidates or resumes. The PDF documents can be converted to text. Sentences in the resumes can be pre-processed. The words can be mapped to embeddings. The data can then be augmented. A model code and performance metrics can be output with accuracy, recall (e.g., true positives divided by the sum of true positives and false negatives) and precision (e.g., true positives divided by the sum of the true positives and the false positives) information.
With respect to candidate predictions, three set of data may be input: resumes (in PDF format) to be scored, the relevant vocabulary list, and the model. Each PDF document can be run through the model and a probability of being a good candidate can be assigned. The output can be a prioritized list of candidates to interview.
Vocabulary Building.
In some embodiments, the following process can be used to build the vocabulary.
PDF to Text Transformation.
In some embodiments, the following process can be used to transform the pdf document to text.
Tokenization.
Training.
The training procedure can assume there is a set of resume PDF documents that have been stored in two different folders. Folder “yes” can include candidates that have been deemed to be successful in the past after a pre-screening hiring round by a hiring team of person(s). Folder “no” can include candidates who did not pass the pre-screening hiring round by the hiring team of person(s). In some embodiment, the following process can be used, For example, using Python as the coding language, with a Keras library and a TensorFlow backend.
Resume Import and Processing.
The example function of
Data Augmentation.
Because machines learn from examples, it is quite helpful to have more examples (e.g., hundreds or thousands or more). By using the fact that sentences resumes are quite independent, we can create “new” example resumes by shuffling sentences belonging to the resume around. This technique can improve the prediction power of the model. For example, in
Deep Neural Network.
We are now ready to do some pre-processing of the encoded resumes before feeding them to our Deep Neural Network.
A deep neural network (DNN) is an ANN (Artificial Neural Network) with multiple hidden layers between the input and output layers.
<https://en.wikipedia.org/wiki/Deep_learning#Deep_neural_networks>.
The following code represents a Deep Neural Network written in Keras
Each row is a layer of the network gets input from the previous layer, applies the layer specific transformations and provides its output as the following layer input.
Specific trasformations are:
Embedding(vocab_size+1, 100, input length=seq_len),
Transforms the resumes into a matrix with 100 columns
Dropout(0.2),
Randomly deletes 20% of the output of the embedding layer
Applies a convolution operation to the output of the dropout layer and then applies a relu (rectified linear unit) function to it
Dropout(dof),
See above
Takes the maximum values of the output provided by the dropout layer
See above
See above
See above
Transforms the output of the maxpooling layer into a long flat vector to be fed into the dense layer
Transforms the output of flatten layer and condenses it into 10 positive numbers
See above
Transforms the output of dropout into 1 positive between 0 and 1 which represents the probability of the resume to be a ‘good’ one.
Stochastic gradient descent (often shortened to SGD), also known as incremental gradient descent, is a stochastic approximation of the gradient descent optimization and iterative method for minimizing an objective function that is written as a sum of differentiable functions.
<https://en.wikipedia.org/wiki/Stochastic_gradient_descent>. When we are finished training the model, we can save both the embeddings value and the model multipliers into a file.
Predicting Candidate “Goodness”.
To predict how a new candidate will perform during pre-screening steps, we can load the model file and pass to it the PDF to get a prediction. The prediction process set forth below can be called scoring and for each resume it can return the predicted probability of the candidate passing an HR department's pre-screening tests.
1. Import resume into a dataframe
2. For each line of the dataframe.
3. Load model.
4. Feed resume to model.
5. Get prediction.
6. Output prediction to .csv file
Once the PDF has been transformed into a sequence of indexes and pre-processed as described above, the scoring procedure comes from multiple transformations of the word vectors using model parameters found during training for the neural network functions. In very simplified terms, this transformation can be represented as y(x)=f(x), where: y can be a predicted probability of a candidate being “good”; f can be the set of parametrized transformations happening as result of optimized neural network parameters determined by the Deep Neural Network algorithm during the model training procedure; and x can be the encoded resume (which can be translated into embeddings during the scoring procedure).
While various embodiments have been described above, it should be understood that they have been presented by way of example and not limitation. It will be apparent to persons skilled in the relevant art(s) that various changes in form and detail can be made therein without departing from the spirit and scope. In fact, after reading the above description, it will be apparent to one skilled in the relevant art(s) how to implement alternative embodiments. For example, other steps may be provided, or steps may be eliminated, from the described flows, and other components may be added to, or removed from, the described systems. Accordingly, other implementations are within the scope of the following claims.
In addition, it should be understood that any figures which highlight the functionality and advantages are presented for example purposes only. The disclosed methodology and system are each sufficiently flexible and configurable such that they may be utilized in ways other than that shown.
Although the term “at least one” may often be used in the specification, claims and drawings, the terms “a”, “an”, “the”, “said”, etc. also signify “at least one” or “the at least one” in the specification, claims and drawings.
Finally, it is the applicant's intent that only claims that include the express language “means for” or “step for” be interpreted under 35 U.S.C. 112(f). Claims that do not expressly include the phrase “means for” or “step for” are not to be interpreted under 35 U.S.C. 112(f).
This application claims the benefit of U.S. Provisional Application Nos. 62/621,404 filed Jun. 24, 2018. All of the foregoing are incorporated by reference in its entirety.
Number | Name | Date | Kind |
---|---|---|---|
20070033064 | Abrahamsohn | Feb 2007 | A1 |
20070203776 | Austin | Aug 2007 | A1 |
20110302100 | Selvakummar | Dec 2011 | A1 |
20120166922 | Rolles | Jun 2012 | A1 |
20120310627 | Qi | Dec 2012 | A1 |
20140033307 | Schmidtler | Jan 2014 | A1 |
20140108308 | Stout | Apr 2014 | A1 |
20140122355 | Hardtke | May 2014 | A1 |
20140250024 | Takalpati | Sep 2014 | A1 |
20150019204 | Simard | Jan 2015 | A1 |
20170154314 | Mones | Jun 2017 | A1 |
20170213190 | Hazan | Jul 2017 | A1 |
20170270484 | Cengiz | Sep 2017 | A1 |
20180173699 | Tacchi | Jun 2018 | A1 |
20180182015 | Su | Jun 2018 | A1 |
20180336183 | Lee | Nov 2018 | A1 |
20180365229 | Buhrmann | Dec 2018 | A1 |
20180373696 | Terry | Dec 2018 | A1 |
20190179903 | Terry | Jun 2019 | A1 |
Entry |
---|
“Deep Learning”, URL: https://en.wikipedia.org/wiki/Deep_learning#Deep_neural_networks, downloaded Jun. 17, 2019, 26 pages. |
“Stochastic gradien descfent”, URL: https://en.wikipedia.org/wiki/Stochastic_gradient_descent, downloaded Jun. 17, 2019, 10 pages. |
Number | Date | Country | |
---|---|---|---|
62621404 | Jan 2018 | US |