Mehyaar commited on
Commit
7e15edd
·
verified ·
1 Parent(s): e11df21

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -9
README.md CHANGED
@@ -1,13 +1,86 @@
1
  ---
2
  license: mit
 
 
3
 
4
- title: "Dataset for IT Skills Named Entity Recognition"
5
- description: |
6
- This dataset includes **5029** curriculum vitae (CV) samples, each marked with IT skills using **Named Entity Recognition** (NER). The skills are labeled in JSON files, making it easy for you to train your own NER model using tools like Spacy.
7
- highlights:
8
- - 5029 CV samples
9
- - IT skills marked with NER
10
- - JSON format for easy use with NLP tools
11
- - Great for training NER models with Spacy
12
 
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ ---
4
+ **IT Skills Named Entity Recognition (NER) Dataset**
5
 
6
+ ## Description**:
7
+ This dataset includes **5,029** curriculum vitae (CV) samples, each annotated with IT skills using **Named Entity Recognition (NER)**. The skills are manually labeled and extracted from PDFs, and the data is provided in JSON format. This dataset is ideal for training and evaluating NER models, especially for extracting IT skills from CVs.
 
 
 
 
 
 
8
 
9
+ ## Highlights:
10
+ - **5,029 CV samples** with annotated IT skills
11
+ - **Manual annotations** for IT skills using Named Entity Recognition (NER)
12
+ - **Text extracted from PDFs** and annotated for IT skills
13
+ - **JSON format** for easy integration with NLP tools like Spacy
14
+ - **Great resource** for training and evaluating NER models for IT skills extraction
15
+
16
+ ## Dataset Details
17
+
18
+ - **Total CVs:** 5,029
19
+ - **Data Format:** JSON files
20
+ - **Annotations:** IT skills labeled using Named Entity Recognition
21
+
22
+ ## Data Description
23
+
24
+ Each JSON file in the dataset contains the following fields:
25
+
26
+ | Field | Description |
27
+ |--------------|-----------------------------------------------------------|
28
+ | `text` | The extracted text from the CV PDF |
29
+ | `annotations` | A list of IT skills annotated in the text, where each annotation includes:
30
+ - `start`: Starting position of the skill in the text (zero-based index)
31
+ - `end`: Ending position of the skill in the text (zero-based index, exclusive)
32
+ - `label`: The type of the entity (IT skill)
33
+
34
+ ### Example JSON File
35
+
36
+ Here is an example of the JSON structure used in the dataset:
37
+
38
+ ```json
39
+ {
40
+ "text": "One97 Communications Limited \nData Scientist Jan 2019 to Till Date \nDetect important information from images and redact\nrequired fields. YOLO CNN Object-detection, OCR\nInsights, find anomaly or performance drop in all\npossible sub-space. \nPredict the Insurance claim probability. Estimate the\npremium amount to be charged\nB.Tech(Computer Science) from SGBAU university in\n2017. \nM.Tech (Computer Science Engineering) from Indian\nInstitute of Technology (IIT), Kanpur in 2019WORK EXPERIENCE\nEDUCATIONMACY WILLIAMS\nDATA SCIENTIST\nData Scientist working on problems related to market research and customer analysis. I want to expand my arsenal of\napplication building and work on different kinds of problems. Looking for a role where I can work with a coordinative team\nand exchange knowledge during the process.\nJava, C++, Python, Machine Learning, Algorithms, Natural Language Processing, Deep Learning, Computer Vision, Pattern\nRecognition, Data Science, Data Analysis, Software Engineer, Data Analyst, C, PySpark, Kubeflow.ABOUT\nSKILLS\nCustomer browsing patterns.\nPredict potential RTO(Return To Origin) orders for e-\ncommerce.\nObject Detection.PROJECTS\nACTIVITES",
41
+ "annotations": [
42
+ [657, 665, "SKILL: Building"],
43
+ [822, 828, "SKILL: python"],
44
+ [811, 815, "SKILL: java"],
45
+ [781, 790, "SKILL: Knowledge"],
46
+ [877, 887, "SKILL: Processing"],
47
+ [194, 205, "SKILL: performance"],
48
+ [442, 452, "SKILL: Technology"],
49
+ [1007, 1014, "SKILL: PySpark"],
50
+ [30, 44, "SKILL: Data Scientist"],
51
+ ... ] }
52
+ ```
53
+
54
+ ## Usage
55
+ This dataset can be used for:
56
+
57
+ - Training Named Entity Recognition (NER) models to identify IT skills from text.
58
+ - Evaluating NER models for their performance in extracting IT skills from CVs.
59
+ - Developing new NLP applications for skill extraction and job matching.
60
+
61
+
62
+ ## How to Load and Use the Data
63
+ To load and use the data, you can use the following Python code:
64
+ ``` python
65
+ import json
66
+ import os
67
+
68
+ # Define the path to the directory containing the JSON files
69
+ directory_path = "path/to/your/json/files"
70
+
71
+ # Load all JSON files
72
+ data = []
73
+ for filename in os.listdir(directory_path):
74
+ if filename.endswith(".json"):
75
+ with open(os.path.join(directory_path, filename), "r") as file:
76
+ data.append(json.load(file))
77
+
78
+ # Example of accessing the first CV's text and annotations
79
+ first_cv = data[0]
80
+ text = first_cv['text']
81
+ annotations = first_cv['annotations']
82
+
83
+ print(f"Text: {text}")
84
+ print(f"Annotations: {annotations}")
85
+
86
+ ```