DaFull commited on
Commit
6e6de69
1 Parent(s): 9b7ffb8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -9
README.md CHANGED
@@ -76,11 +76,11 @@ Can be easily integrated into your existing spaCy-based NLP pipelines.
76
 
77
 
78
  ### Usage
79
- Installation
80
- You can install the custom spaCy NER model using pip:
81
 
82
  ```bash
83
- Copy code
84
  pip install https://huggingface.co/DaFull/en_ner_job_postings/resolve/main/en_ner_job_postings-any-py3-none-any.whl
85
 
86
  ```
@@ -99,18 +99,18 @@ text = "HR Specialist needed at XYZ Corporation, Dallas, TX, with expertise in e
99
  doc = nlp(text)
100
 
101
  # Extract named entities
102
- 'for ent in doc.ents:
103
  print(f"Entity: {ent.text}, Type: {ent.label_}")
104
 
105
  ```
106
 
107
- Entity Types
108
  The model recognizes the following entity types:
109
 
110
- PROFESSION: Represents professions or job titles.
111
- FACILITY: Denotes facilities, buildings, or locations.
112
- EXPERIENCE: Identifies mentions of work experience, durations, or qualifications.
113
- '
114
  ### Label Scheme
115
 
116
  <details>
 
76
 
77
 
78
  ### Usage
79
+ #### Installation
80
+ ##### You can install the custom spaCy NER model using pip:
81
 
82
  ```bash
83
+
84
  pip install https://huggingface.co/DaFull/en_ner_job_postings/resolve/main/en_ner_job_postings-any-py3-none-any.whl
85
 
86
  ```
 
99
  doc = nlp(text)
100
 
101
  # Extract named entities
102
+ for ent in doc.ents:
103
  print(f"Entity: {ent.text}, Type: {ent.label_}")
104
 
105
  ```
106
 
107
+ #### Entity Types
108
  The model recognizes the following entity types:
109
 
110
+ - PROFESSION: Represents professions or job titles.
111
+ - FACILITY: Denotes facilities, buildings, or locations.
112
+ - EXPERIENCE: Identifies mentions of work experience, durations, or qualifications.
113
+
114
  ### Label Scheme
115
 
116
  <details>