Ejemplo n.º 1
0
    def test_section_extract(self):
        document = "1st Assistant Golf Professional\n\n\n\nAll times are in Coordinated Universal Time.\n\nRequisition ID\n\n2017-14328\n\n# of Openings\n\n1\n\nJob Locations\n\nUS-TX-Austin\n\nPosted Date\n\n3/27/2017\n\nCategory (Portal Searching)\n\nGolf Resort Operations\n\n\n\n\n\nMore information about this job:\n\n\n\n\n\nLocation:\n\n\n\n\n\n\n\n**Barton Creek Resort & Spa**\n\n\n\n[Barton Creek]\n\n\n\nBarton Creek Resort & Spa's success is due to its dedicated, intelligent and self-motivated family of associates who work together to maintain the company's trademark high standards. If you would like to be a part of an environment where teamwork is emphasized and individual excellence is encouraged then this is the place for you.\n\n\n\nOmni Barton Creek Resort and Spa\u2019s associates enjoy a dynamic and exciting work environment, comprehensive training and mentoring, along with the pride that comes from working for a company with a reputation for exceptional service. We embody a culture of respect, gratitude and empowerment day in and day out. If you are a friendly, motivated person, with a passion to serve others, the Omni Barton Creek may be your perfect match.\n\n\n\n\n\nJob Description:\n\n\n\n\n\nThe 1st Assistant Golf Professional will assist the First Assistant and the Head Golf Professional with all activities relating to the management and execution of the properties golf operations, including but not limited to Member tournaments, Resort and outside events, outside service staff, golf shop, practice facilities, instructional program, financial management, human resource management and maintenance of golf equipment.\n\n\n\n****\n\n\n\n\n\nResponsibilities:\n\n\n\n\n\n\n\n* Ensure that all members and guests are greeted and welcomed in a professional and courteous manner.\n\n* Answer telephones to schedule future starting times and communicate information in a pleasant and professional manner.\n\n* Maintain inventory control and cash bank.\n\n* Ensure the golf course is properly marked.\n\n* Professionally communicate information, sell merchandise, and become fully knowledgeable in all products in the golf shop. Anticipate the needs of members and guests to offer appropriate merchandise alternatives.\n\n* Assist with physical inventories, as prescribed by Director of Retail and Head Golf Professional.\n\n* Ensure the \u201cpace of play\u201d standard is maintained daily.\n\n* Oversee rental club inventory.\n\n\n\n\n\n\n\n\n\n\n\nQualifications:\n\n\n\n\n\n\n\n* Excellent communication skills, both verbal and written\n\n* Solid computer skills including Microsoft Outlook, Word, and Excel\n\n* Proven leadership\n\n* Reputation for quality and attention to detail\n\n* Ability and willingness to work long hours and weekends as demanded by business cycles\n\n* Ability to use logical and rational thinking to solve problems.\n\n* Flexibility in hours, ability to manage multiple tasks"
        expected_sections = [
            "Excellent communication skills, both verbal and written",
            "Solid computer skills including Microsoft Outlook, Word, and Excel",
            "Proven leadership",
            "Reputation for quality and attention to detail",
            "Ability and willingness to work long hours and weekends as demanded by business cycles",
            "Ability to use logical and rational thinking to solve problems.",
            "Flexibility in hours, ability to manage multiple tasks",
        ]

        section_units = section_extract(section_regex=r'.*Qualifications',
                                        document=document)
        for sentence, start_index in section_units:
            assert sentence[0:5] == document[start_index:start_index + 5]
        for expected_section in expected_sections:
            assert any(section[0] == expected_section
                       for section in section_units)
        document = document.replace('\n', ' ')
        section_units = section_extract(section_regex=r'.*Qualifications',
                                        document=document)
        for sentence, start_index in section_units:
            assert sentence[0:5] == document[start_index:start_index + 5]
        for expected_section in expected_sections:
            assert any(section[0] == expected_section
                       for section in section_units)
Ejemplo n.º 2
0
 def _transform(self, document):
     lines_from_section = section_extract(self.section_regex,
                                          document['description'])
     return [
         word_tokenize(clean_str(strip_bullets_from_line(line.text)))
         for line in lines_from_section
     ]
Ejemplo n.º 3
0
    def candidate_skills(self, source_object: Dict) -> CandidateSkillYielder:
        """Generate candidate skills from the source object

        Yields each sentence from the configured section pattern
        """

        spans_in_section = section_extract(self.section_regex,
                                           source_object['description'])
        for span in spans_in_section:
            logging.info('Yielding candidate skill %s', span)
            yield CandidateSkill(skill_name=span.text,
                                 matched_skill_identifier=None,
                                 confidence=100,
                                 context=span.text,
                                 start_index=span.start_index,
                                 document_id=source_object['id'],
                                 document_type=source_object['@type'],
                                 source_object=source_object,
                                 skill_extractor_name=self.name)