Lynceus commited on
Commit
98408c8
·
verified ·
1 Parent(s): 140ef68

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. .gitattributes +1 -0
  2. README.md +116 -0
  3. companies.csv +0 -0
  4. jobs.csv +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
+ jobs.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,119 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ language:
4
+ - en
5
+ pretty_name: Lynceus Open Job Index
6
+ size_categories:
7
+ - 100K<n<1M
8
+ tags:
9
+ - jobs
10
+ - job-postings
11
+ - hiring
12
+ - employment
13
+ - labor-market
14
+ - recruitment
15
+ configs:
16
+ - config_name: jobs
17
+ default: true
18
+ data_files:
19
+ - split: train
20
+ path: jobs.csv
21
+ - config_name: companies
22
+ data_files:
23
+ - split: train
24
+ path: companies.csv
25
  ---
26
+
27
+ # Lynceus Open Job Index
28
+
29
+ **241,793 open roles** at **8,271 companies**, **39,425** of them
30
+ remote. Read directly from each employer's own careers page and public ATS
31
+ feed — never aggregated or reposted from a job board.
32
+
33
+ _Last updated: 2026-08-17 20:18 UTC_
34
+
35
+ ## What this is
36
+
37
+ Most job datasets are scraped from aggregators, which means they are a copy of
38
+ a copy: stale, deduplicated badly, and full of listings that were filled weeks
39
+ ago. This one is read at the source. Every row links to the employer's own
40
+ posting.
41
+
42
+ A listing is removed when the company takes it down, so the set does not
43
+ accumulate filled roles.
44
+
45
+ ## Configs
46
+
47
+ | Config | Rows | What it is |
48
+ | --- | --- | --- |
49
+ | `jobs` (default) | 241,793 | One row per open role |
50
+ | `companies` | 8,271 | One row per employer, with its open-role count |
51
+
52
+ ```python
53
+ from datasets import load_dataset
54
+
55
+ jobs = load_dataset("Lyneux/jobs", "jobs", split="train")
56
+ companies = load_dataset("Lyneux/jobs", "companies", split="train")
57
+ ```
58
+
59
+ ## Fields
60
+
61
+ ### `jobs`
62
+
63
+ | Field | Type | Notes |
64
+ | --- | --- | --- |
65
+ | `title` | string | The role, as the employer wrote it |
66
+ | `company` | string | Employer name |
67
+ | `company_domain` | string | Resolved website domain; empty when unknown |
68
+ | `location` | string | Free text, as published — not normalised |
69
+ | `remote` | bool | Marked remote by the employer |
70
+ | `posted` | date | `YYYY-MM-DD`; empty when the source omits it |
71
+ | `source` | string | `board` (read from an ATS feed) or `scraped` (read from a careers page, so possibly partial) |
72
+ | `url` | string | The employer's own posting |
73
+
74
+ ### `companies`
75
+
76
+ | Field | Type | Notes |
77
+ | --- | --- | --- |
78
+ | `company` | string | Employer name |
79
+ | `domain` | string | Resolved website domain |
80
+ | `open_roles` | int | Open roles at export time |
81
+ | `careers_url` | string | The careers page or job board |
82
+
83
+ ## What is excluded, and why
84
+
85
+ - **Recruiters, staffing agencies and job-board aggregators.** Every entry is an
86
+ employer hiring for itself.
87
+ - **Companies with no career page or no open role.** There would be nothing to
88
+ apply to.
89
+ - **Non-commercial domains** — `.org`, `.edu`, `.gov` and similar.
90
+ - **Job descriptions.** They are the employer's own copyrighted text.
91
+ Republishing them wholesale is not ours to do; the `url` goes to the source.
92
+
93
+ ## Known limitations
94
+
95
+ - `location` is free text exactly as the employer published it, so `London`,
96
+ `London, United Kingdom` and `London, GB` all occur. Normalise before
97
+ aggregating.
98
+ - `posted` is missing for a minority of rows, because not every ATS feed
99
+ publishes it. Sort with nulls last.
100
+ - Company names originate from ATS tokens for board-sourced employers, so some
101
+ appear as slugs (`Openai` rather than `OpenAI`).
102
+ - Coverage skews toward companies using Greenhouse, Lever, Ashby, Workable and
103
+ similar modern ATS platforms.
104
+
105
+ ## Licence
106
+
107
+ The compilation is CC BY 4.0 — use it, build on it, credit Lynceus. Individual
108
+ listings are facts about public job ads and remain the property of the
109
+ companies posting them.
110
+
111
+ Corrections and removals: open a discussion here, or an issue at
112
+ [github.com/trylynceus/jobs](https://github.com/trylynceus/jobs). Employers who
113
+ would rather not appear are removed the same day.
114
+
115
+ ## Links
116
+
117
+ - [trylynceus.com](https://trylynceus.com) — the product
118
+ - [github.com/trylynceus/jobs](https://github.com/trylynceus/jobs) — a browsable
119
+ daily snapshot, by city and role family
companies.csv ADDED
The diff for this file is too large to render. See raw diff
 
jobs.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:04f6d3af0d46c7b82fb39d890826dcebecd38f88c0323f7c65ca8d2a16a6524e
3
+ size 38040085