Update README.md
Browse files
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 |
-
|
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 |
-
|
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>
|