JulianAT commited on
Commit
afbc6cf
·
verified ·
1 Parent(s): 61d4a5b

Publish validated code corpus

Browse files
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- pretty_name: Personal Code Corpus (raw-max)
3
  license: other
4
  language:
5
  - code
@@ -13,12 +13,28 @@ size_categories:
13
  - 10K<n<100K
14
  task_categories:
15
  - text-generation
 
 
16
  tags:
17
  - code
 
18
  - source-code
19
  - code-completion
 
 
 
 
 
 
 
 
20
  - deduplicated
 
 
21
  - datasets
 
 
 
22
  configs:
23
  - config_name: default
24
  data_files:
@@ -44,93 +60,218 @@ dataset_info:
44
  dtype: int32
45
  splits:
46
  - name: train
47
- num_examples: 15157
48
- num_bytes: 46331486
49
  - name: valid
50
- num_examples: 3122
51
- num_bytes: 9533576
52
  ---
53
 
54
- # Personal code corpus: raw-max
55
 
56
- This is a repo-walked style/volume corpus, **not a curated accepted-state dataset**. It captures
57
- files present in local repository checkouts when the builder ran. It does not establish that every
58
- chunk is correct, reviewed, authored exclusively by one person, or suitable as a preferred answer.
59
 
60
- The corpus is intended for code-language modeling, code completion, and controlled personalization
61
- experiments. It must not be used to infer repository ownership, software quality, security, or the
62
- identity of an author.
63
 
64
- ## Dataset summary
 
 
 
65
 
66
- - Rows: 18,279
67
- - Emitted lines: 1,301,863 (1,150,304 nonblank)
68
- - UTF-8 source text: 50.5 MiB
69
- - Source files with retained chunks: 7,836
70
- - Repositories with retained rows: 58
71
- - Completion field: `text`
72
- - Provenance fields: `repo`, `path`, `language`, `sha`, `chunk_index`, `n_tokens`
73
- - Split: deterministic repository-level train/valid assignment; a repository never crosses splits
74
- - Hash: SHA-256 of the emitted chunk text
75
- - Token counts: deterministic tokenizer-independent lexical estimates used for approximate chunking
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  ## Load the dataset
78
 
 
 
79
  ```python
80
  from datasets import load_dataset
81
 
82
  dataset = load_dataset("JulianAT/personal-codex-model")
 
 
83
  ```
84
 
85
- Each row has the following stable schema:
86
 
87
- - `text`: source-code chunk used as the completion field
88
- - `repo`, `path`: source provenance within the local corpus
89
- - `language`: language inferred from the file extension
90
- - `sha`: SHA-256 of the emitted `text`
91
- - `chunk_index`: zero-based chunk position within the source file
92
- - `n_tokens`: tokenizer-independent lexical token estimate
93
 
94
- Line and byte totals describe emitted chunks. Chunk overlap can repeat boundary text, so these are
95
- training-corpus volume measurements rather than unique repository lines of code.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
- `raw-max` is bounded by code that actually exists after filtering. A claim of several million rows
98
- is only credible when the source repositories contain enough retained code; `--max-rows` is a
99
- ceiling, not a promised row count. This implementation supports at most 1,000,000 rows per variant.
100
 
101
- ## Deduplication
102
 
103
- Exact duplicate chunks are removed by SHA-256. Near duplicates are removed online with
104
- `datasketch.MinHashLSH`, 128 permutations, token
105
- 5-grams, and a Jaccard threshold of 0.85.
 
 
 
106
 
107
- ## Exclusions and limitations
 
 
 
 
108
 
109
- The walk excludes gitignored paths, `.git`, dependency/environment directories, build outputs,
110
- vendored/generated directories and filename patterns, lockfiles, minified files, symlinks, binaries,
111
- non-UTF-8 files, unsupported extensions, and files above 1,048,576 bytes.
112
- The quality variant may additionally exclude tests, fixtures, and low-history files.
113
 
114
- Repository licenses and obligations still apply to the source code. The dataset-level `other`
115
- license value does not replace per-repository licenses. Paths and code can contain sensitive data;
116
- inspect the artifacts before publishing. MinHash is approximate, lexical token counts are not model
117
- token counts, current checkouts omit deleted historical code, and repository-level splitting can
118
- produce an empty validation split when fewer than two repositories contribute rows.
119
 
120
- This corpus can contain insecure, incomplete, duplicated, outdated, or otherwise low-quality code.
121
- It is not a benchmark and has no correctness labels. The secret scanner uses a conservative set of
122
- high-confidence patterns and is not proof that the corpus is free of private or identifying data.
123
 
124
- ## Reproducibility and audit
 
 
125
 
126
- `statistics.json` records row counts, split assignments, language distribution, filter decisions,
127
- deduplication totals, and build parameters. Splits are deterministic for the recorded seed. Source
128
- repository checkouts and the builder configuration are deliberately not included in the Hub repo.
 
129
 
130
- ## Hub files
131
 
132
- - `data/*.parquet`: Hugging Face loader source
133
- - `dataset_infos.json`, `statistics.json`: schema, counts, filters, and dedup audit
 
 
 
 
 
 
 
 
134
 
135
- The local build also creates Arrow and JSONL representations for training. They are intentionally
136
- excluded from Hub publication because they duplicate the Parquet data.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: Personal Codex Model Training Corpus
3
  license: other
4
  language:
5
  - code
 
13
  - 10K<n<100K
14
  task_categories:
15
  - text-generation
16
+ task_ids:
17
+ - language-modeling
18
  tags:
19
  - code
20
+ - text
21
  - source-code
22
  - code-completion
23
+ - code-generation
24
+ - causal-language-modeling
25
+ - continued-pretraining
26
+ - fine-tuning
27
+ - coding-assistant
28
+ - software-engineering
29
+ - repository-level
30
+ - multilingual-code
31
  - deduplicated
32
+ - provenance-aware
33
+ - parquet
34
  - datasets
35
+ - typescript
36
+ - python
37
+ - javascript
38
  configs:
39
  - config_name: default
40
  data_files:
 
60
  dtype: int32
61
  splits:
62
  - name: train
63
+ num_examples: 15226
64
+ num_bytes: 46393834
65
  - name: valid
66
+ num_examples: 3135
67
+ num_bytes: 9543076
68
  ---
69
 
70
+ # Personal Codex Model Training Corpus
71
 
72
+ ## Overview
 
 
73
 
74
+ Personal Codex Model Training Corpus is a provenance-aware, repository-level dataset for causal
75
+ language modeling, code completion, continued pretraining, and coding assistant adaptation. It is
76
+ built from source files present in local Git repository checkouts at a defined collection point.
77
 
78
+ The dataset prioritizes broad, authentic software-engineering coverage while retaining enough
79
+ metadata to audit every emitted chunk. It is not an instruction dataset, benchmark, or collection
80
+ of verified solutions. Each record represents source text as it existed in a repository checkout,
81
+ after filtering, chunking, secret screening, and global deduplication.
82
 
83
+ ## Dataset profile
84
+
85
+ | Metric | Value |
86
+ | --- | ---: |
87
+ | Dataset variant | `raw-max` |
88
+ | Total examples | 18,361 |
89
+ | Training examples | 15,226 |
90
+ | Validation examples | 3,135 |
91
+ | Emitted lines | 1,305,187 |
92
+ | Nonblank emitted lines | 1,153,093 |
93
+ | Approximate lexical tokens | 12,472,126 |
94
+ | UTF-8 source text | 50.5 MiB |
95
+ | Source files with retained chunks | 7,913 |
96
+ | Repositories with retained rows | 58 |
97
+
98
+ Line, byte, and token totals measure emitted training chunks. The configured chunk overlap can
99
+ repeat text at chunk boundaries. These figures describe training volume, not unique repository
100
+ lines of code or model-tokenizer counts.
101
+
102
+ ## Language and format distribution
103
+
104
+ The `language` value is assigned from a controlled extension and exact-filename mapping. Markdown,
105
+ configuration, schema, and build-system files are retained because they are part of real software
106
+ engineering workflows and frequently contain executable examples or machine-consumed structure.
107
+
108
+ | Language or format | Examples | Share |
109
+ | --- | ---: | ---: |
110
+ | Markdown | 6,559 | 35.7% |
111
+ | TypeScript | 6,170 | 33.6% |
112
+ | JSON | 2,828 | 15.4% |
113
+ | Python | 1,532 | 8.3% |
114
+ | XML Schema | 354 | 1.9% |
115
+ | JavaScript | 218 | 1.2% |
116
+ | CSS | 144 | 0.8% |
117
+ | YAML | 112 | 0.6% |
118
+ | MDX | 93 | 0.5% |
119
+ | SQL | 69 | 0.4% |
120
+ | Shell | 60 | 0.3% |
121
+ | HTML | 53 | 0.3% |
122
+ | Git Ignore | 44 | 0.2% |
123
+ | Text | 31 | 0.2% |
124
+ | Swift | 15 | 0.1% |
125
+ | TeX | 14 | 0.1% |
126
+ | Java | 13 | 0.1% |
127
+ | TOML | 9 | 0.0% |
128
+ | Dockerfile | 6 | 0.0% |
129
+ | Git Attributes | 4 | 0.0% |
130
+ | Web Manifest | 4 | 0.0% |
131
+ | Prettier Ignore | 4 | 0.0% |
132
+ | Prettier | 4 | 0.0% |
133
+ | Docker Ignore | 3 | 0.0% |
134
+ | XML | 3 | 0.0% |
135
+ | EditorConfig | 2 | 0.0% |
136
+ | INI | 2 | 0.0% |
137
+ | Handlebars | 2 | 0.0% |
138
+ | Batch | 2 | 0.0% |
139
+ | Procfile | 1 | 0.0% |
140
+ | JSON Lines | 1 | 0.0% |
141
+ | Runpod Ignore | 1 | 0.0% |
142
+ | Prisma | 1 | 0.0% |
143
+ | ESLint Ignore | 1 | 0.0% |
144
+ | Makefile | 1 | 0.0% |
145
+ | SCSS | 1 | 0.0% |
146
+
147
+ ## Intended uses
148
+
149
+ Appropriate uses include:
150
+
151
+ - continued pretraining or domain adaptation of causal language models
152
+ - code completion and repository-aware coding assistant experiments
153
+ - tokenizer, chunking, deduplication, and corpus composition research
154
+ - retrieval and provenance experiments using repository and path metadata
155
+ - controlled studies of personalization on repository-disjoint validation data
156
+
157
+ The dataset is not suitable as a correctness benchmark, a secure-code reference, a software
158
+ license classifier, or evidence of authorship and repository ownership.
159
 
160
  ## Load the dataset
161
 
162
+ Install a compatible version of `datasets`, then load the full corpus:
163
+
164
  ```python
165
  from datasets import load_dataset
166
 
167
  dataset = load_dataset("JulianAT/personal-codex-model")
168
+ print(dataset)
169
+ print(dataset["train"].features)
170
  ```
171
 
172
+ Stream examples without downloading the complete dataset:
173
 
174
+ ```python
175
+ from datasets import load_dataset
 
 
 
 
176
 
177
+ stream = load_dataset("JulianAT/personal-codex-model", split="train", streaming=True)
178
+ first_example = next(iter(stream))
179
+ ```
180
+
181
+ ## Schema
182
+
183
+ | Field | Type | Description |
184
+ | --- | --- | --- |
185
+ | `text` | string | Source-code or repository-text chunk used as the modeling target. |
186
+ | `repo` | string | Source repository name at collection time. |
187
+ | `path` | string | Repository-relative source path. |
188
+ | `language` | string | Language or format inferred from the configured mapping. |
189
+ | `sha` | string | SHA-256 digest of the emitted `text`. |
190
+ | `chunk_index` | int32 | Zero-based chunk position within the source file. |
191
+ | `n_tokens` | int32 | Tokenizer-independent lexical token estimate. |
192
+
193
+ ## Dataset construction
194
+
195
+ The builder applies the following deterministic pipeline:
196
+
197
+ 1. Discover configured Git repository checkouts.
198
+ 2. Walk supported source, documentation, schema, configuration, and build files.
199
+ 3. Exclude ignored, sensitive, generated, vendored, binary, oversized, and unsupported content.
200
+ 4. Decode retained files as UTF-8 and reject unreadable or empty payloads.
201
+ 5. Reject complete files containing high-confidence credential signatures.
202
+ 6. Chunk source text to approximately 896 lexical tokens with an overlap of
203
+ 64 lexical tokens.
204
+ 7. Remove exact duplicate chunks by SHA-256.
205
+ 8. Remove near-duplicate chunks with MinHash LSH.
206
+ 9. Assign repositories, rather than individual rows, to deterministic train and validation splits.
207
 
208
+ This repository-level split prevents a source repository from appearing in both splits. It reduces
209
+ direct leakage from repeated project structure and repository-specific conventions.
 
210
 
211
+ ## Deduplication and quality controls
212
 
213
+ Near-duplicate detection uses `datasketch.MinHashLSH` with
214
+ 128 permutations, token 5-grams, and a Jaccard
215
+ threshold of 0.85. The current build retained
216
+ 18,361 chunks after dropping
217
+ 1,470 exact duplicates and
218
+ 1,027 near duplicates.
219
 
220
+ The file walk excludes Git metadata, ignored paths, dependency and environment directories, build
221
+ outputs, vendored and generated directories, lockfiles, minified files, symlinks, binary or
222
+ non-UTF-8 payloads, files above 1,048,576 bytes, and unsupported formats.
223
+ Credential screening covers high-confidence private-key, platform-token, cloud-key, API-key, and
224
+ JWT patterns.
225
 
226
+ These controls reduce common leakage and duplication risks. They do not constitute a formal proof
227
+ that every row is safe, original, correct, or free of sensitive information.
 
 
228
 
229
+ ## Provenance, privacy, and licensing
 
 
 
 
230
 
231
+ Every record retains repository, path, language, chunk position, and content-hash metadata. This
232
+ supports traceability inside the published corpus without publishing local checkout locations or
233
+ builder credentials.
234
 
235
+ Some contributing repositories were private at collection time. Public publication was explicitly
236
+ enabled by the dataset maintainer. Users should still treat repository names, paths, comments, and
237
+ source text as potentially identifying information.
238
 
239
+ The dataset uses the Hugging Face `other` license classification because no single dataset-wide
240
+ software license supersedes the licenses and obligations of the contributing repositories. Users
241
+ are responsible for reviewing source-specific rights and restrictions before redistribution,
242
+ commercial use, model release, or generated-code reuse.
243
 
244
+ ## Limitations
245
 
246
+ - Source is collected from working-tree snapshots, not from deleted Git history.
247
+ - Repository contents can include incomplete, insecure, outdated, experimental, or generated-like
248
+ code that survives the configured filters.
249
+ - Extension-based language labels do not perform parser-level language verification.
250
+ - Lexical token estimates are not equivalent to tokens from a production model tokenizer.
251
+ - MinHash is approximate and can retain related text or remove independently written similar text.
252
+ - Chunk overlap increases emitted volume and can repeat boundary lines.
253
+ - The dataset contains no correctness, security, quality, preference, or authorship labels.
254
+ - Repository-disjoint validation measures transfer across included repositories, not general coding
255
+ ability across unrelated ecosystems.
256
 
257
+ ## Reproducibility and audit artifacts
258
+
259
+ `statistics.json` records build parameters, split assignments, row and token counts, language
260
+ distribution, filter decisions, and deduplication totals. `dataset_infos.json` records the feature
261
+ schema and split sizes. The Parquet shards are the canonical Hub loader source.
262
+
263
+ The Hub publication intentionally omits local Arrow and JSONL copies because they duplicate the
264
+ Parquet payload. It also omits source checkouts, local filesystem paths, author-email configuration,
265
+ and training artifacts.
266
+
267
+ ## Citation
268
+
269
+ ```bibtex
270
+ @misc{personal_codex_model_training_corpus,
271
+ author = {JulianAT},
272
+ title = {Personal Codex Model Training Corpus},
273
+ year = {2026},
274
+ howpublished = {Hugging Face Datasets},
275
+ url = {https://huggingface.co/datasets/JulianAT/personal-codex-model}
276
+ }
277
+ ```
data/train-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:08f42133ddb13188997a3b512d556a4ca0f3cd26dbb4bc9644b788421fce46bc
3
- size 15767661
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fcdb4a9d58f6217ab1a142586c5a756befd69b3427650b332deb851d3953bd56
3
+ size 15813974
data/valid-00000-of-00001.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3eb5fffa54a9a5f1a6136c79f4ab261168b7acc4fa7f2ca07bc68720e005cbd8
3
- size 3721175
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6b2f45d80f690bfbf7563346779ff0e6c7b113d1648032868bf30b082bda879
3
+ size 3730829
dataset_infos.json CHANGED
@@ -3,9 +3,9 @@
3
  "builder_name": "parquet",
4
  "config_name": "default",
5
  "dataset_name": "raw-max",
6
- "dataset_size": 55865062,
7
  "description": "Repository-walked personal code chunks for completion training.",
8
- "download_size": 19488836,
9
  "features": {
10
  "chunk_index": {
11
  "_type": "Value",
@@ -37,17 +37,17 @@
37
  }
38
  },
39
  "license": "other",
40
- "size_in_bytes": 75353898,
41
  "splits": {
42
  "train": {
43
  "name": "train",
44
- "num_bytes": 46331486,
45
- "num_examples": 15157
46
  },
47
  "valid": {
48
  "name": "valid",
49
- "num_bytes": 9533576,
50
- "num_examples": 3122
51
  }
52
  }
53
  }
 
3
  "builder_name": "parquet",
4
  "config_name": "default",
5
  "dataset_name": "raw-max",
6
+ "dataset_size": 55936910,
7
  "description": "Repository-walked personal code chunks for completion training.",
8
+ "download_size": 19544803,
9
  "features": {
10
  "chunk_index": {
11
  "_type": "Value",
 
37
  }
38
  },
39
  "license": "other",
40
+ "size_in_bytes": 75481713,
41
  "splits": {
42
  "train": {
43
  "name": "train",
44
+ "num_bytes": 46393834,
45
+ "num_examples": 15226
46
  },
47
  "valid": {
48
  "name": "valid",
49
+ "num_bytes": 9543076,
50
+ "num_examples": 3135
51
  }
52
  }
53
  }
statistics.json CHANGED
@@ -1,17 +1,30 @@
1
  {
2
  "by_language": {
 
3
  "CSS": 144,
 
4
  "Dockerfile": 6,
 
 
 
 
5
  "HTML": 53,
 
 
6
  "JSON": 2828,
 
7
  "Java": 13,
8
  "JavaScript": 218,
9
  "MDX": 93,
10
  "Makefile": 1,
11
- "Markdown": 6554,
 
 
12
  "Prisma": 1,
13
  "Procfile": 1,
14
- "Python": 1530,
 
 
15
  "SQL": 69,
16
  "Shell": 60,
17
  "Swift": 15,
@@ -19,6 +32,7 @@
19
  "TeX": 14,
20
  "Text": 31,
21
  "TypeScript": 6170,
 
22
  "XML": 3,
23
  "XML Schema": 354,
24
  "YAML": 112
@@ -27,76 +41,76 @@
27
  "1AHIF-BOT": 3,
28
  "Illegale_Strassenrennen-Webprojekt": 8,
29
  "Kriegsmarine_Webprojekt": 19,
30
- "POS-23-24-Java": 15,
31
  "Project-CB": 1,
32
  "Valorant-Webprojekt": 30,
33
- "adapter-lab": 1301,
34
- "ai-video": 196,
35
  "asai": 50,
36
- "aucta": 398,
37
- "brz-chatbot": 366,
38
- "catchi": 239,
39
- "clawguard": 732,
40
- "codex-hackathon": 1081,
41
  "cursor-austria": 41,
42
- "cursor-vienna-discord": 147,
43
- "datagvat-mcp": 2107,
44
- "daytona-generative-ui": 383,
45
- "diplomarbeit-ideen": 387,
46
- "diplomarbeit-os": 2737,
47
  "ewor-skill": 276,
48
- "hacknation": 624,
49
- "hacknation-app": 68,
50
- "hacknation-landing": 211,
51
  "hacknation-venture": 17,
52
  "hacknation-web": 37,
53
- "hands-on-ai": 269,
54
- "htl-donaustadt-chatbot": 42,
55
  "html-starter": 4,
56
- "ifg-agentic": 267,
57
- "interior-3d": 35,
58
- "interiorly": 457,
59
  "interiorly-dashboard": 70,
60
- "interiorly-pitch": 101,
61
  "interiorly-preview": 41,
62
- "interiorly-promo-fake": 263,
63
- "interiorly_changelog": 36,
64
  "interiorly_landingpage": 56,
65
- "jku-assignments": 511,
66
- "jku-current-topics-report": 29,
67
- "jku-encyclopedia": 1216,
68
  "jku-python": 1,
69
  "julian-at": 2,
70
  "mlpc-2026-task3": 92,
71
  "mlpc-exam": 403,
72
- "mlpc_task_4": 57,
73
  "mystahd": 66,
74
  "next-todo": 14,
75
- "openai-build-week": 762,
76
  "portfolio": 142,
77
- "qdrant-hackathon": 191,
78
- "start-hackathon": 78,
79
- "synth-ui": 525,
80
- "synth-ui-training": 20,
81
  "tdot_chatbot": 146,
82
  "untis-lehrer-extension": 29,
83
- "young_ai_leaders_linz": 70,
84
- "zero_one_hack_01": 810
85
  },
86
  "cap_reached": false,
87
- "chunks_considered": 20700,
88
  "dedup_report": {
89
- "exact_duplicates_dropped": 1409,
90
- "near_duplicates_dropped": 1012,
91
- "rows_kept": 18279
92
  },
93
- "files_considered": 8825,
94
- "files_selected": 8779,
95
  "filter_report": {
96
  "empty": 45,
97
  "excluded_directory": 65,
98
- "extension": 1283,
99
- "gitignored": 25,
100
  "lockfile": 55,
101
  "secret_openai_key": 1,
102
  "sensitive_path": 31,
@@ -104,10 +118,10 @@
104
  "symlink_directory": 2,
105
  "too_large": 121
106
  },
107
- "generated_at": "2026-07-16T15:57:59+00:00",
108
  "lines": {
109
- "nonblank": 1150304,
110
- "total": 1301863
111
  },
112
  "max_rows": 1000000,
113
  "parameters": {
@@ -185,31 +199,31 @@
185
  "repositories_discovered": 60,
186
  "repositories_with_rows": 58,
187
  "rows": {
188
- "total": 18279,
189
- "train": 15157,
190
- "valid": 3122
191
  },
192
  "self_test": {
193
  "loader": "datasets.load_dataset(\"JulianAT/personal-codex-model\")",
194
  "splits": {
195
- "train": 15157,
196
- "valid": 3122
197
  },
198
  "status": "passed"
199
  },
200
- "source_files": 7836,
201
  "sources": {
202
  "config": "local config.yaml (not published)",
203
  "repository_root": "local repository checkouts (not published)"
204
  },
205
  "tokens": {
206
  "histogram": {
207
- "0-255": 2780,
208
- "256-511": 2511,
209
- "512-1023": 12988
210
  },
211
- "total": 12456402
212
  },
213
- "utf8_bytes": 52915839,
214
  "variant": "raw-max"
215
  }
 
1
  {
2
  "by_language": {
3
+ "Batch": 2,
4
  "CSS": 144,
5
+ "Docker Ignore": 3,
6
  "Dockerfile": 6,
7
+ "ESLint Ignore": 1,
8
+ "EditorConfig": 2,
9
+ "Git Attributes": 4,
10
+ "Git Ignore": 44,
11
  "HTML": 53,
12
+ "Handlebars": 2,
13
+ "INI": 2,
14
  "JSON": 2828,
15
+ "JSON Lines": 1,
16
  "Java": 13,
17
  "JavaScript": 218,
18
  "MDX": 93,
19
  "Makefile": 1,
20
+ "Markdown": 6559,
21
+ "Prettier": 4,
22
+ "Prettier Ignore": 4,
23
  "Prisma": 1,
24
  "Procfile": 1,
25
+ "Python": 1532,
26
+ "Runpod Ignore": 1,
27
+ "SCSS": 1,
28
  "SQL": 69,
29
  "Shell": 60,
30
  "Swift": 15,
 
32
  "TeX": 14,
33
  "Text": 31,
34
  "TypeScript": 6170,
35
+ "Web Manifest": 4,
36
  "XML": 3,
37
  "XML Schema": 354,
38
  "YAML": 112
 
41
  "1AHIF-BOT": 3,
42
  "Illegale_Strassenrennen-Webprojekt": 8,
43
  "Kriegsmarine_Webprojekt": 19,
44
+ "POS-23-24-Java": 17,
45
  "Project-CB": 1,
46
  "Valorant-Webprojekt": 30,
47
+ "adapter-lab": 1304,
48
+ "ai-video": 197,
49
  "asai": 50,
50
+ "aucta": 399,
51
+ "brz-chatbot": 368,
52
+ "catchi": 240,
53
+ "clawguard": 734,
54
+ "codex-hackathon": 1082,
55
  "cursor-austria": 41,
56
+ "cursor-vienna-discord": 149,
57
+ "datagvat-mcp": 2111,
58
+ "daytona-generative-ui": 389,
59
+ "diplomarbeit-ideen": 389,
60
+ "diplomarbeit-os": 2740,
61
  "ewor-skill": 276,
62
+ "hacknation": 626,
63
+ "hacknation-app": 69,
64
+ "hacknation-landing": 212,
65
  "hacknation-venture": 17,
66
  "hacknation-web": 37,
67
+ "hands-on-ai": 272,
68
+ "htl-donaustadt-chatbot": 44,
69
  "html-starter": 4,
70
+ "ifg-agentic": 268,
71
+ "interior-3d": 38,
72
+ "interiorly": 463,
73
  "interiorly-dashboard": 70,
74
+ "interiorly-pitch": 103,
75
  "interiorly-preview": 41,
76
+ "interiorly-promo-fake": 266,
77
+ "interiorly_changelog": 37,
78
  "interiorly_landingpage": 56,
79
+ "jku-assignments": 512,
80
+ "jku-current-topics-report": 31,
81
+ "jku-encyclopedia": 1220,
82
  "jku-python": 1,
83
  "julian-at": 2,
84
  "mlpc-2026-task3": 92,
85
  "mlpc-exam": 403,
86
+ "mlpc_task_4": 58,
87
  "mystahd": 66,
88
  "next-todo": 14,
89
+ "openai-build-week": 764,
90
  "portfolio": 142,
91
+ "qdrant-hackathon": 193,
92
+ "start-hackathon": 81,
93
+ "synth-ui": 528,
94
+ "synth-ui-training": 22,
95
  "tdot_chatbot": 146,
96
  "untis-lehrer-extension": 29,
97
+ "young_ai_leaders_linz": 74,
98
+ "zero_one_hack_01": 813
99
  },
100
  "cap_reached": false,
101
+ "chunks_considered": 20858,
102
  "dedup_report": {
103
+ "exact_duplicates_dropped": 1470,
104
+ "near_duplicates_dropped": 1027,
105
+ "rows_kept": 18361
106
  },
107
+ "files_considered": 8970,
108
+ "files_selected": 8924,
109
  "filter_report": {
110
  "empty": 45,
111
  "excluded_directory": 65,
112
+ "extension": 1131,
113
+ "gitignored": 32,
114
  "lockfile": 55,
115
  "secret_openai_key": 1,
116
  "sensitive_path": 31,
 
118
  "symlink_directory": 2,
119
  "too_large": 121
120
  },
121
+ "generated_at": "2026-07-16T16:10:46+00:00",
122
  "lines": {
123
+ "nonblank": 1153093,
124
+ "total": 1305187
125
  },
126
  "max_rows": 1000000,
127
  "parameters": {
 
199
  "repositories_discovered": 60,
200
  "repositories_with_rows": 58,
201
  "rows": {
202
+ "total": 18361,
203
+ "train": 15226,
204
+ "valid": 3135
205
  },
206
  "self_test": {
207
  "loader": "datasets.load_dataset(\"JulianAT/personal-codex-model\")",
208
  "splits": {
209
+ "train": 15226,
210
+ "valid": 3135
211
  },
212
  "status": "passed"
213
  },
214
+ "source_files": 7913,
215
  "sources": {
216
  "config": "local config.yaml (not published)",
217
  "repository_root": "local repository checkouts (not published)"
218
  },
219
  "tokens": {
220
  "histogram": {
221
+ "0-255": 2847,
222
+ "256-511": 2515,
223
+ "512-1023": 12999
224
  },
225
+ "total": 12472126
226
  },
227
+ "utf8_bytes": 52976638,
228
  "variant": "raw-max"
229
  }