Datasets:
Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- README.md +94 -0
- job_training_data.json +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 58 |
# Video files - compressed
|
| 59 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 60 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
job_training_data.json filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
pretty_name: Job Training Data for JSON Extraction
|
| 4 |
+
task_categories:
|
| 5 |
+
- text-generation
|
| 6 |
+
tags:
|
| 7 |
+
- json
|
| 8 |
+
- web-scraping
|
| 9 |
+
- job-postings
|
| 10 |
+
- training-data
|
| 11 |
+
- json-extraction
|
| 12 |
+
size_categories: medium
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# Job Training Data
|
| 16 |
+
|
| 17 |
+
Training dataset for fine-tuning LLMs to extract structured JSON from job postings.
|
| 18 |
+
|
| 19 |
+
## Description
|
| 20 |
+
|
| 21 |
+
This dataset contains **12,000 examples** of job postings in markdown format paired with their JSON extractions. Used to train the `job-posting-extractor-qwen` model.
|
| 22 |
+
|
| 23 |
+
## Data Format
|
| 24 |
+
|
| 25 |
+
Each example contains:
|
| 26 |
+
|
| 27 |
+
- `instruction`: What to do (e.g., "Extract job fields as JSON").
|
| 28 |
+
|
| 29 |
+
- `input`: Job posting in markdown format.
|
| 30 |
+
|
| 31 |
+
- `output`: Expected JSON output (as a string).
|
| 32 |
+
|
| 33 |
+
### Example Entry
|
| 34 |
+
|
| 35 |
+
```json
|
| 36 |
+
{
|
| 37 |
+
"instruction": "Extract all job fields as JSON object.",
|
| 38 |
+
"input": "# Job Position\n**Position:** Platform Engineer\n**Company:** DATAECONOMY\n**Location:** Charlotte, NC\n\n## Job Description\nRole: Platform engineer...",
|
| 39 |
+
"output": "{\"job_title\": \"Platform Engineer\", \"company\": \"DATAECONOMY\", \"location\": \"Charlotte, NC\"}"
|
| 40 |
+
}
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
## How It Was Created
|
| 44 |
+
|
| 45 |
+
1. Data sourced from webscraped job postings.
|
| 46 |
+
|
| 47 |
+
2. Converted to markdown using template-based generation.
|
| 48 |
+
|
| 49 |
+
3. JSON labels programmatically extracted from the scraped data.
|
| 50 |
+
|
| 51 |
+
4. Augmented with 15 instruction variations.
|
| 52 |
+
|
| 53 |
+
## Dataset Statistics
|
| 54 |
+
|
| 55 |
+
| Metric | Value |
|
| 56 |
+
|--------|-------|
|
| 57 |
+
| Total examples | 12,000 |
|
| 58 |
+
| Unique JSON fields | 7 (job_title, company, location, work_type, description, experience_level, salary) |
|
| 59 |
+
| Instruction variations | 15 |
|
| 60 |
+
|
| 61 |
+
## Files
|
| 62 |
+
|
| 63 |
+
- `job_training_data.json`: Main training data (12,000 examples).
|
| 64 |
+
|
| 65 |
+
## License & Attribution
|
| 66 |
+
|
| 67 |
+
This dataset is licensed under the **Creative Commons Attribution 4.0 International (CC BY 4.0)** license.
|
| 68 |
+
|
| 69 |
+
You are free to **use, share, copy, modify, and redistribute** this material for any purpose (including commercial use), **provided that proper attribution is given**.
|
| 70 |
+
|
| 71 |
+
### Attribution requirements
|
| 72 |
+
|
| 73 |
+
Any reuse, redistribution, or derivative work **must** include:
|
| 74 |
+
|
| 75 |
+
1. **The creator's name**: `HelixCipher`
|
| 76 |
+
|
| 77 |
+
2. **A link to the original repository**:
|
| 78 |
+
|
| 79 |
+
https://github.com/HelixCipher/fine-tuning-an-local-llm-for-web-scraping
|
| 80 |
+
|
| 81 |
+
3. **An indication of whether changes were made**
|
| 82 |
+
|
| 83 |
+
4. **A reference to the license (CC BY 4.0)**
|
| 84 |
+
|
| 85 |
+
#### Example Attribution
|
| 86 |
+
|
| 87 |
+
> This work is based on *Fine-Tuning An Local LLM for Web Scraping* by `HelixCipher`.
|
| 88 |
+
> Original source: https://github.com/HelixCipher/fine-tuning-an-local-llm-for-web-scraping
|
| 89 |
+
|
| 90 |
+
> Licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0).
|
| 91 |
+
|
| 92 |
+
You may place this attribution in a README, documentation, credits section, or other visible location appropriate to the medium.
|
| 93 |
+
|
| 94 |
+
Full license text: https://creativecommons.org/licenses/by/4.0/
|
job_training_data.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58476a94cae08ed5880adb7844bdb311e2696ce2ebacac995a10a636d0eba871
|
| 3 |
+
size 22364609
|