Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
json
Languages:
English
Size:
< 1K
Tags:
code-review
defect-detection
software-engineering
label-noise
uncertainty-quantification
python
License:
Add cohort record
Browse files- README.md +50 -4
- data/cohort.jsonl +65 -0
README.md
CHANGED
|
@@ -22,6 +22,8 @@ configs:
|
|
| 22 |
data_files: data/labels.jsonl
|
| 23 |
- config_name: audits
|
| 24 |
data_files: data/audits.jsonl
|
|
|
|
|
|
|
| 25 |
---
|
| 26 |
|
| 27 |
# CoReDD Bench
|
|
@@ -38,11 +40,11 @@ The setting is ex ante. A detector sees the change and its review context as the
|
|
| 38 |
|
| 39 |
Every case is a change that was defective and was later corrected, so the question is where the defect sits, not whether the change has one. That defect was present the moment the code was written. Corrections that became necessary only because a dependency or an environment changed later are excluded, since nothing in the reviewed change could have revealed them.
|
| 40 |
|
| 41 |
-
The six repositories were selected for observable review and integration workflows, not as a sample of code review practice. Results hold within that scope.
|
| 42 |
|
| 43 |
-
##
|
| 44 |
|
| 45 |
-
|
| 46 |
|
| 47 |
Reconstruction is stochastic and imperfect. A manual audit by a single annotator checks a sample of the reconstructed labels, asking for each case whether the change is corrective, whether the traced change is the origin, and whether the marked lines are complete. The resulting error rates ship as posterior distributions in `data/noise.json`.
|
| 48 |
|
|
@@ -158,11 +160,12 @@ data/
|
|
| 158 |
labels.jsonl
|
| 159 |
noise.json
|
| 160 |
audits.jsonl
|
|
|
|
| 161 |
src/coredd/
|
| 162 |
tests/
|
| 163 |
```
|
| 164 |
|
| 165 |
-
Evaluation reads two of these. The benchmark cases and their reconstructed labels live in `data/labels.jsonl`, and the posterior parameters of the label error rates, one set per confidence stratum, in `data/noise.json`. The observations the rates were derived from are kept in `data/audits.jsonl`. Projection, perturbation, and metrics are implemented in `src/coredd/`.
|
| 166 |
|
| 167 |
### Case record
|
| 168 |
|
|
@@ -212,6 +215,49 @@ Each line of `audits.jsonl` records one audited case. Retained are the repositor
|
|
| 212 |
|
| 213 |
Audit records are released for transparency and secondary analysis. Evaluation does not read them, since the rates derived from them already enter through `noise.json`.
|
| 214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 215 |
## Related resource
|
| 216 |
|
| 217 |
[CoReDD Corpus](https://huggingface.co/datasets/witrin/coredd-corpus) holds the frozen repository histories and the timestamped GitHub review context the benchmark was built from and is evaluated against.
|
|
|
|
| 22 |
data_files: data/labels.jsonl
|
| 23 |
- config_name: audits
|
| 24 |
data_files: data/audits.jsonl
|
| 25 |
+
- config_name: cohort
|
| 26 |
+
data_files: data/cohort.jsonl
|
| 27 |
---
|
| 28 |
|
| 29 |
# CoReDD Bench
|
|
|
|
| 40 |
|
| 41 |
Every case is a change that was defective and was later corrected, so the question is where the defect sits, not whether the change has one. That defect was present the moment the code was written. Corrections that became necessary only because a dependency or an environment changed later are excluded, since nothing in the reviewed change could have revealed them.
|
| 42 |
|
| 43 |
+
The six repositories were selected for observable review and integration workflows, not as a sample of code review practice. Results hold within that scope. The cohort they were drawn from is described in `data/cohort.jsonl`.
|
| 44 |
|
| 45 |
+
## Label reconstruction
|
| 46 |
|
| 47 |
+
The labels are estimates derived from the repository history, not annotated ground truth. For every correction observed after integration, agents search the commit history for the change that introduced the defect and mark the lines within it that caused the correction.
|
| 48 |
|
| 49 |
Reconstruction is stochastic and imperfect. A manual audit by a single annotator checks a sample of the reconstructed labels, asking for each case whether the change is corrective, whether the traced change is the origin, and whether the marked lines are complete. The resulting error rates ship as posterior distributions in `data/noise.json`.
|
| 50 |
|
|
|
|
| 160 |
labels.jsonl
|
| 161 |
noise.json
|
| 162 |
audits.jsonl
|
| 163 |
+
cohort.jsonl
|
| 164 |
src/coredd/
|
| 165 |
tests/
|
| 166 |
```
|
| 167 |
|
| 168 |
+
Evaluation reads two of these. The benchmark cases and their reconstructed labels live in `data/labels.jsonl`, and the posterior parameters of the label error rates, one set per confidence stratum, in `data/noise.json`. The observations the rates were derived from are kept in `data/audits.jsonl`, and the repository cohort the benchmark was drawn from is described in `data/cohort.jsonl`. Projection, perturbation, and metrics are implemented in `src/coredd/`.
|
| 169 |
|
| 170 |
### Case record
|
| 171 |
|
|
|
|
| 215 |
|
| 216 |
Audit records are released for transparency and secondary analysis. Evaluation does not read them, since the rates derived from them already enter through `noise.json`.
|
| 217 |
|
| 218 |
+
### Cohort record
|
| 219 |
+
|
| 220 |
+
The six benchmark repositories are a stratified sample from a cohort of 65 repositories; each line of `cohort.jsonl` describes one of them.
|
| 221 |
+
|
| 222 |
+
The cohort is the survivor set of a construction funnel over active Python repositories on GitHub. Platform events yield 9,345 candidates, of which repository selection retains 1,090, integration branch reconstruction 812, review discipline profiling 130, and integration gate enforcement 65. From these, two repositories per discussion-rate stratum were drawn as the audit sample. The funnel restricts the observable population as follows.
|
| 223 |
+
|
| 224 |
+
| Aspect | Restriction |
|
| 225 |
+
| --- | --- |
|
| 226 |
+
| Platform | GitHub only |
|
| 227 |
+
| Language | Python only |
|
| 228 |
+
| Communication | English only |
|
| 229 |
+
| Activity interval | June to September 2025 |
|
| 230 |
+
| Review threshold | eligibility score ≥ 0.75 |
|
| 231 |
+
| Minimum history | ≥ 100 merged pull requests |
|
| 232 |
+
| Branch instability | ≤ 2 integration branch segments |
|
| 233 |
+
| Review discipline | stationary review probability (tolerance 0.01, onset within the first tenth) |
|
| 234 |
+
| Bypass threshold | bypass share < 0.05 |
|
| 235 |
+
|
| 236 |
+
```json
|
| 237 |
+
{
|
| 238 |
+
"repository": "OpenJobDescription/openjd-model-for-python",
|
| 239 |
+
"organization": "OpenJobDescription",
|
| 240 |
+
"review": {"score": 0.8569, "low": 0.4344, "high": 0.9025, "coverage": 1.0},
|
| 241 |
+
"stationarity": {"onset": 0.0, "kind": "stationary"},
|
| 242 |
+
"bypass": {"share": 0.0196, "attributed": 200, "bypassed": 4, "picked": 0, "ambiguous": 0},
|
| 243 |
+
"merges": {"total": 137, "rate": 4.2812},
|
| 244 |
+
"reviewers": {"total": 28, "rate": 5.3929},
|
| 245 |
+
"scale": {"sloc": 19584, "core": 6, "age": 32},
|
| 246 |
+
"participation": {"share": 0.2409, "stratum": "low", "sampled": true}
|
| 247 |
+
}
|
| 248 |
+
```
|
| 249 |
+
|
| 250 |
+
Each record pairs the scores the funnel filtered on with the descriptive metrics of the repository.
|
| 251 |
+
|
| 252 |
+
- `review` — the eligibility score of repository selection, a Wilson score over the reviewed merges of the observation window with its interval bounds, and the full-history share of merged pull requests reviewed by a user other than the author (`coverage`).
|
| 253 |
+
- `stationarity` — the fitted review-probability profile: `onset` is the earliest fraction of the history after which it varies by at most the tolerance; `kind` is `stationary` or `stationary tail`.
|
| 254 |
+
- `bypass` — the share of trunk commits that entered without a merged pull request, over the commits whose attribution is decided, with the class counts behind it.
|
| 255 |
+
- `merges`, `reviewers` — full-history totals with per-month rates: merged pull requests per month, and the mean number of distinct reviewers active per month.
|
| 256 |
+
- `scale` — Python source lines at the released head, the core contributors (the smallest set of commit authors covering 80% of trunk commits), and the history age in months.
|
| 257 |
+
- `participation` — the discussion rate (merged pull requests with a comment by another user before close), its stratum under the cuts at 0.32 and 0.48, and whether the repository entered the audit sample.
|
| 258 |
+
|
| 259 |
+
Cohort records are released for transparency and secondary analysis, in particular of the scope the results hold within. Evaluation does not read them.
|
| 260 |
+
|
| 261 |
## Related resource
|
| 262 |
|
| 263 |
[CoReDD Corpus](https://huggingface.co/datasets/witrin/coredd-corpus) holds the frozen repository histories and the timestamped GitHub review context the benchmark was built from and is evaluated against.
|
data/cohort.jsonl
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"repository": "Benchling-Open-Source/allotropy", "organization": "Benchling-Open-Source", "review": {"score": 0.798, "low": 0.5463, "high": 0.8444, "coverage": 0.998}, "stationarity": {"onset": 0.014, "kind": "stationary tail"}, "bypass": {"share": 0.002, "attributed": 1005, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 1012, "rate": 31.625}, "reviewers": {"total": 17, "rate": 5.7812}, "scale": {"sloc": 75104, "core": 5, "age": 32}, "participation": {"share": 0.2708, "stratum": "low", "sampled": false}}
|
| 2 |
+
{"repository": "DataDog/dd-license-attribution", "organization": "DataDog", "review": {"score": 0.8449, "low": 0.3, "high": 0.9032, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0136, "attributed": 290, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 134, "rate": 6.7}, "reviewers": {"total": 4, "rate": 2.15}, "scale": {"sloc": 20120, "core": 2, "age": 20}, "participation": {"share": 0.3731, "stratum": "mid", "sampled": false}}
|
| 3 |
+
{"repository": "Energinet-DataHub/opengeh-python-packages", "organization": "Energinet-DataHub", "review": {"score": 0.9026, "low": 0.5481, "high": 0.9295, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0047, "attributed": 210, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 209, "rate": 7.4643}, "reviewers": {"total": 26, "rate": 4.8929}, "scale": {"sloc": 6726, "core": 10, "age": 28}, "participation": {"share": 0.3684, "stratum": "mid", "sampled": false}}
|
| 4 |
+
{"repository": "ISISComputingGroup/ibex_bluesky_core", "organization": "ISISComputingGroup", "review": {"score": 0.9221, "low": 0.6078, "high": 0.9416, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0049, "attributed": 204, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 163, "rate": 7.4091}, "reviewers": {"total": 13, "rate": 3.1364}, "scale": {"sloc": 11884, "core": 3, "age": 22}, "participation": {"share": 0.4479, "stratum": "mid", "sampled": false}}
|
| 5 |
+
{"repository": "NOAA-GFDL/NDSL", "organization": "NOAA-GFDL", "review": {"score": 0.7997, "low": 0.444, "high": 0.8584, "coverage": 0.9917}, "stationarity": {"onset": 0.0641, "kind": "stationary tail"}, "bypass": {"share": 0.0492, "attributed": 348, "bypassed": 18, "picked": 0, "ambiguous": 0}, "merges": {"total": 362, "rate": 13.4074}, "reviewers": {"total": 13, "rate": 4.7857}, "scale": {"sloc": 34424, "core": 3, "age": 27}, "participation": {"share": 0.4006, "stratum": "mid", "sampled": false}}
|
| 6 |
+
{"repository": "NVIDIA-NeMo/Run", "organization": "NVIDIA-NeMo", "review": {"score": 0.945, "low": 0.69, "high": 0.9566, "coverage": 0.9596}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0066, "attributed": 299, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 322, "rate": 15.3333}, "reviewers": {"total": 25, "rate": 5.6364}, "scale": {"sloc": 34013, "core": 7, "age": 21}, "participation": {"share": 0.2236, "stratum": "low", "sampled": false}}
|
| 7 |
+
{"repository": "OpenJobDescription/openjd-adaptor-runtime-for-python", "organization": "OpenJobDescription", "review": {"score": 0.9539, "low": 0.4365, "high": 0.9699, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0151, "attributed": 196, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 124, "rate": 3.875}, "reviewers": {"total": 30, "rate": 4.6071}, "scale": {"sloc": 12170, "core": 6, "age": 32}, "participation": {"share": 0.2177, "stratum": "low", "sampled": false}}
|
| 8 |
+
{"repository": "OpenJobDescription/openjd-model-for-python", "organization": "OpenJobDescription", "review": {"score": 0.8569, "low": 0.4344, "high": 0.9025, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0196, "attributed": 200, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 137, "rate": 4.2812}, "reviewers": {"total": 28, "rate": 5.3929}, "scale": {"sloc": 19584, "core": 6, "age": 32}, "participation": {"share": 0.2409, "stratum": "low", "sampled": true}}
|
| 9 |
+
{"repository": "OpenJobDescription/openjd-sessions-for-python", "organization": "OpenJobDescription", "review": {"score": 0.7869, "low": 0.3057, "high": 0.8632, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0121, "attributed": 245, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 165, "rate": 5.1562}, "reviewers": {"total": 32, "rate": 6.2581}, "scale": {"sloc": 12660, "core": 8, "age": 32}, "participation": {"share": 0.3333, "stratum": "mid", "sampled": false}}
|
| 10 |
+
{"repository": "SatelliteQE/airgun", "organization": "SatelliteQE", "review": {"score": 0.8832, "low": 0.6372, "high": 0.9081, "coverage": 0.8857}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0285, "attributed": 1056, "bypassed": 31, "picked": 0, "ambiguous": 0}, "merges": {"total": 1733, "rate": 17.33}, "reviewers": {"total": 61, "rate": 7.92}, "scale": {"sloc": 21930, "core": 24, "age": 100}, "participation": {"share": 0.367, "stratum": "mid", "sampled": false}}
|
| 11 |
+
{"repository": "SonarSource/sonar-scanner-python", "organization": "SonarSource", "review": {"score": 0.9062, "low": 0.4526, "high": 0.9368, "coverage": 0.9892}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0135, "attributed": 219, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 186, "rate": 6.4138}, "reviewers": {"total": 12, "rate": 2.88}, "scale": {"sloc": 6465, "core": 7, "age": 29}, "participation": {"share": 0.4247, "stratum": "mid", "sampled": false}}
|
| 12 |
+
{"repository": "SwissDataScienceCenter/renku-data-services", "organization": "SwissDataScienceCenter", "review": {"score": 0.8853, "low": 0.5667, "high": 0.9149, "coverage": 0.9732}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0093, "attributed": 638, "bypassed": 6, "picked": 0, "ambiguous": 0}, "merges": {"total": 709, "rate": 19.1622}, "reviewers": {"total": 14, "rate": 4.3684}, "scale": {"sloc": 77396, "core": 5, "age": 37}, "participation": {"share": 0.9069, "stratum": "high", "sampled": false}}
|
| 13 |
+
{"repository": "Zipstack/unstract-sdk", "organization": "Zipstack", "review": {"score": 1.0, "low": 0.6457, "high": 1.0, "coverage": 0.9797}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0203, "attributed": 193, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 197, "rate": 9.85}, "reviewers": {"total": 19, "rate": 8.1905}, "scale": {"sloc": 10849, "core": 6, "age": 20}, "participation": {"share": 0.4975, "stratum": "high", "sampled": false}}
|
| 14 |
+
{"repository": "ansible/django-ansible-base", "organization": "ansible", "review": {"score": 0.8785, "low": 0.6269, "high": 0.9049, "coverage": 0.9836}, "stationarity": {"onset": 0.0321, "kind": "stationary tail"}, "bypass": {"share": 0.0133, "attributed": 818, "bypassed": 11, "picked": 0, "ambiguous": 0}, "merges": {"total": 731, "rate": 23.5806}, "reviewers": {"total": 66, "rate": 11.4375}, "scale": {"sloc": 48421, "core": 10, "age": 31}, "participation": {"share": 0.528, "stratum": "high", "sampled": false}}
|
| 15 |
+
{"repository": "ansible/eda-server", "organization": "ansible", "review": {"score": 0.9092, "low": 0.6286, "high": 0.9302, "coverage": 0.9256}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0382, "attributed": 1082, "bypassed": 43, "picked": 1, "ambiguous": 0}, "merges": {"total": 1250, "rate": 30.4878}, "reviewers": {"total": 49, "rate": 10.2439}, "scale": {"sloc": 59430, "core": 9, "age": 41}, "participation": {"share": 0.5272, "stratum": "high", "sampled": false}}
|
| 16 |
+
{"repository": "ansys/pyacp", "organization": "ansys", "review": {"score": 0.9246, "low": 0.3006, "high": 0.9544, "coverage": 0.9726}, "stationarity": {"onset": 0.0822, "kind": "stationary tail"}, "bypass": {"share": 0.0123, "attributed": 564, "bypassed": 7, "picked": 0, "ambiguous": 0}, "merges": {"total": 401, "rate": 7.7115}, "reviewers": {"total": 10, "rate": 2.3077}, "scale": {"sloc": 20725, "core": 2, "age": 52}, "participation": {"share": 0.3142, "stratum": "low", "sampled": false}}
|
| 17 |
+
{"repository": "apache/iceberg-python", "organization": "apache", "review": {"score": 0.7706, "low": 0.6046, "high": 0.8096, "coverage": 0.9952}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0004, "attributed": 2657, "bypassed": 1, "picked": 1, "ambiguous": 0}, "merges": {"total": 1052, "rate": 32.875}, "reviewers": {"total": 64, "rate": 8.2727}, "scale": {"sloc": 167220, "core": 12, "age": 32}, "participation": {"share": 0.5951, "stratum": "high", "sampled": false}}
|
| 18 |
+
{"repository": "astronomy-commons/hats-import", "organization": "astronomy-commons", "review": {"score": 0.8718, "low": 0.3589, "high": 0.9178, "coverage": 0.9503}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0108, "attributed": 368, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 382, "rate": 9.55}, "reviewers": {"total": 17, "rate": 4.8049}, "scale": {"sloc": 8348, "core": 3, "age": 40}, "participation": {"share": 0.3115, "stratum": "low", "sampled": false}}
|
| 19 |
+
{"repository": "aws-deadline/deadline-cloud", "organization": "aws-deadline", "review": {"score": 0.9426, "low": 0.765, "high": 0.9516, "coverage": 0.9987}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0025, "attributed": 814, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 743, "rate": 22.5152}, "reviewers": {"total": 63, "rate": 16.4118}, "scale": {"sloc": 52187, "core": 20, "age": 33}, "participation": {"share": 0.4805, "stratum": "high", "sampled": false}}
|
| 20 |
+
{"repository": "aws-deadline/deadline-cloud-for-3ds-max", "organization": "aws-deadline", "review": {"score": 1.0, "low": 0.7412, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0066, "attributed": 150, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 124, "rate": 4.5926}, "reviewers": {"total": 28, "rate": 6.2174}, "scale": {"sloc": 14114, "core": 8, "age": 27}, "participation": {"share": 0.4516, "stratum": "mid", "sampled": false}}
|
| 21 |
+
{"repository": "aws-deadline/deadline-cloud-for-cinema-4d", "organization": "aws-deadline", "review": {"score": 0.9739, "low": 0.7586, "high": 0.9786, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0031, "attributed": 322, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 272, "rate": 9.7143}, "reviewers": {"total": 31, "rate": 7.16}, "scale": {"sloc": 9640, "core": 6, "age": 28}, "participation": {"share": 0.3566, "stratum": "mid", "sampled": false}}
|
| 22 |
+
{"repository": "aws-deadline/deadline-cloud-for-maya", "organization": "aws-deadline", "review": {"score": 1.0, "low": 0.7719, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0076, "attributed": 262, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 214, "rate": 6.4848}, "reviewers": {"total": 39, "rate": 6.8182}, "scale": {"sloc": 8039, "core": 14, "age": 33}, "participation": {"share": 0.3692, "stratum": "mid", "sampled": false}}
|
| 23 |
+
{"repository": "aws-deadline/deadline-cloud-for-nuke", "organization": "aws-deadline", "review": {"score": 0.8716, "low": 0.4677, "high": 0.9111, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0088, "attributed": 226, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 163, "rate": 4.9394}, "reviewers": {"total": 39, "rate": 5.7097}, "scale": {"sloc": 7554, "core": 13, "age": 33}, "participation": {"share": 0.2883, "stratum": "low", "sampled": false}}
|
| 24 |
+
{"repository": "aws-deadline/deadline-cloud-test-fixtures", "organization": "aws-deadline", "review": {"score": 1.0, "low": 0.6097, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0048, "attributed": 208, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 166, "rate": 5.0303}, "reviewers": {"total": 33, "rate": 6.6774}, "scale": {"sloc": 6673, "core": 9, "age": 33}, "participation": {"share": 0.2169, "stratum": "low", "sampled": false}}
|
| 25 |
+
{"repository": "aws-deadline/deadline-cloud-worker-agent", "organization": "aws-deadline", "review": {"score": 1.0, "low": 0.8454, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.003, "attributed": 658, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 541, "rate": 16.3939}, "reviewers": {"total": 45, "rate": 11.5294}, "scale": {"sloc": 44475, "core": 10, "age": 33}, "participation": {"share": 0.403, "stratum": "mid", "sampled": false}}
|
| 26 |
+
{"repository": "aws/serverless-application-model", "organization": "aws", "review": {"score": 1.0, "low": 0.4385, "high": 1.0, "coverage": 0.9811}, "stationarity": {"onset": 0.0561, "kind": "stationary tail"}, "bypass": {"share": 0.0416, "attributed": 1522, "bypassed": 66, "picked": 0, "ambiguous": 0}, "merges": {"total": 1588, "rate": 13.8087}, "reviewers": {"total": 106, "rate": 6.8447}, "scale": {"sloc": 40159, "core": 40, "age": 115}, "participation": {"share": 0.5271, "stratum": "high", "sampled": false}}
|
| 27 |
+
{"repository": "awslabs/graphstorm", "organization": "awslabs", "review": {"score": 0.8838, "low": 0.4974, "high": 0.9182, "coverage": 0.9955}, "stationarity": {"onset": 0.014, "kind": "stationary tail"}, "bypass": {"share": 0.0049, "attributed": 807, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 881, "rate": 22.025}, "reviewers": {"total": 14, "rate": 4.8611}, "scale": {"sloc": 79015, "core": 5, "age": 40}, "participation": {"share": 0.6538, "stratum": "high", "sampled": true}}
|
| 28 |
+
{"repository": "awslabs/s3-connector-for-pytorch", "organization": "awslabs", "review": {"score": 1.0, "low": 0.5655, "high": 1.0, "coverage": 0.9881}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0106, "attributed": 281, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 253, "rate": 8.1613}, "reviewers": {"total": 16, "rate": 3.25}, "scale": {"sloc": 11329, "core": 5, "age": 31}, "participation": {"share": 0.5375, "stratum": "high", "sampled": false}}
|
| 29 |
+
{"repository": "canonical/charm-microceph", "organization": "canonical", "review": {"score": 0.9246, "low": 0.3006, "high": 0.9544, "coverage": 0.9733}, "stationarity": {"onset": 0.0762, "kind": "stationary tail"}, "bypass": {"share": 0.0253, "attributed": 154, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 150, "rate": 4.0541}, "reviewers": {"total": 12, "rate": 2.9333}, "scale": {"sloc": 12668, "core": 4, "age": 37}, "participation": {"share": 0.4667, "stratum": "mid", "sampled": false}}
|
| 30 |
+
{"repository": "canonical/charmed-openstack-upgrader", "organization": "canonical", "review": {"score": 1.0, "low": 0.4385, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0094, "attributed": 315, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 343, "rate": 9.8}, "reviewers": {"total": 15, "rate": 4.8148}, "scale": {"sloc": 16376, "core": 5, "age": 35}, "participation": {"share": 0.6793, "stratum": "high", "sampled": false}}
|
| 31 |
+
{"repository": "canonical/craft-cli", "organization": "canonical", "review": {"score": 0.9268, "low": 0.523, "high": 0.9486, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0032, "attributed": 310, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 216, "rate": 3.8571}, "reviewers": {"total": 19, "rate": 3.5102}, "scale": {"sloc": 8362, "core": 4, "age": 56}, "participation": {"share": 0.4444, "stratum": "mid", "sampled": false}}
|
| 32 |
+
{"repository": "canonical/craft-parts", "organization": "canonical", "review": {"score": 0.9484, "low": 0.7529, "high": 0.9571, "coverage": 0.9948}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0044, "attributed": 907, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 954, "rate": 14.9062}, "reviewers": {"total": 27, "rate": 5.6984}, "scale": {"sloc": 49241, "core": 7, "age": 64}, "participation": {"share": 0.4927, "stratum": "high", "sampled": false}}
|
| 33 |
+
{"repository": "canonical/craft-providers", "organization": "canonical", "review": {"score": 1.0, "low": 0.7719, "high": 1.0, "coverage": 0.9958}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0033, "attributed": 606, "bypassed": 2, "picked": 1, "ambiguous": 0}, "merges": {"total": 476, "rate": 7.4375}, "reviewers": {"total": 20, "rate": 4.3276}, "scale": {"sloc": 23657, "core": 3, "age": 64}, "participation": {"share": 0.4097, "stratum": "mid", "sampled": false}}
|
| 34 |
+
{"repository": "canonical/craft-store", "organization": "canonical", "review": {"score": 1.0, "low": 0.5655, "high": 1.0, "coverage": 0.9939}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0065, "attributed": 304, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 163, "rate": 2.8596}, "reviewers": {"total": 16, "rate": 3.1667}, "scale": {"sloc": 6006, "core": 2, "age": 57}, "participation": {"share": 0.3129, "stratum": "low", "sampled": false}}
|
| 35 |
+
{"repository": "canonical/github-runner-operator", "organization": "canonical", "review": {"score": 0.8832, "low": 0.6372, "high": 0.9081, "coverage": 0.9979}, "stationarity": {"onset": 0.018, "kind": "stationary tail"}, "bypass": {"share": 0.0372, "attributed": 517, "bypassed": 20, "picked": 1, "ambiguous": 0}, "merges": {"total": 474, "rate": 7.7705}, "reviewers": {"total": 29, "rate": 6.6042}, "scale": {"sloc": 19687, "core": 5, "age": 61}, "participation": {"share": 0.5274, "stratum": "high", "sampled": false}}
|
| 36 |
+
{"repository": "canonical/mysql-operator", "organization": "canonical", "review": {"score": 1.0, "low": 0.6097, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.004, "attributed": 499, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 422, "rate": 9.1739}, "reviewers": {"total": 27, "rate": 5.3617}, "scale": {"sloc": 23597, "core": 5, "age": 46}, "participation": {"share": 0.5213, "stratum": "high", "sampled": false}}
|
| 37 |
+
{"repository": "canonical/pgbouncer-operator", "organization": "canonical", "review": {"score": 0.8288, "low": 0.0945, "high": 0.9055, "coverage": 0.9958}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0108, "attributed": 551, "bypassed": 6, "picked": 0, "ambiguous": 0}, "merges": {"total": 238, "rate": 4.4906}, "reviewers": {"total": 26, "rate": 4.0408}, "scale": {"sloc": 14763, "core": 2, "age": 53}, "participation": {"share": 0.3403, "stratum": "mid", "sampled": false}}
|
| 38 |
+
{"repository": "canonical/vault-k8s-operator", "organization": "canonical", "review": {"score": 0.8383, "low": 0.5121, "high": 0.8819, "coverage": 0.9977}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0028, "attributed": 723, "bypassed": 2, "picked": 0, "ambiguous": 0}, "merges": {"total": 432, "rate": 9.1915}, "reviewers": {"total": 17, "rate": 3.7073}, "scale": {"sloc": 25390, "core": 5, "age": 47}, "participation": {"share": 0.2708, "stratum": "low", "sampled": false}}
|
| 39 |
+
{"repository": "cds-snc/sre-bot", "organization": "cds-snc", "review": {"score": 0.8288, "low": 0.0945, "high": 0.9055, "coverage": 0.9804}, "stationarity": {"onset": 0.0942, "kind": "stationary tail"}, "bypass": {"share": 0.0464, "attributed": 987, "bypassed": 48, "picked": 0, "ambiguous": 0}, "merges": {"total": 613, "rate": 12.0196}, "reviewers": {"total": 12, "rate": 3.0}, "scale": {"sloc": 80748, "core": 3, "age": 51}, "participation": {"share": 0.1109, "stratum": "low", "sampled": false}}
|
| 40 |
+
{"repository": "cohere-ai/cohere-compass-sdk", "organization": "cohere-ai", "review": {"score": 0.9176, "low": 0.4902, "high": 0.9433, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.006, "attributed": 166, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 165, "rate": 7.1739}, "reviewers": {"total": 17, "rate": 5.0}, "scale": {"sloc": 7684, "core": 6, "age": 23}, "participation": {"share": 0.3273, "stratum": "mid", "sampled": true}}
|
| 41 |
+
{"repository": "datarobot/airflow-provider-datarobot", "organization": "datarobot", "review": {"score": 0.9539, "low": 0.4365, "high": 0.9699, "coverage": 0.9763}, "stationarity": {"onset": 0.0321, "kind": "stationary tail"}, "bypass": {"share": 0.0276, "attributed": 211, "bypassed": 6, "picked": 0, "ambiguous": 0}, "merges": {"total": 211, "rate": 5.1463}, "reviewers": {"total": 42, "rate": 7.125}, "scale": {"sloc": 10547, "core": 5, "age": 41}, "participation": {"share": 0.5118, "stratum": "high", "sampled": false}}
|
| 42 |
+
{"repository": "demisto/demisto-sdk", "organization": "demisto", "review": {"score": 0.7969, "low": 0.5601, "high": 0.8415, "coverage": 0.9943}, "stationarity": {"onset": 0.0321, "kind": "stationary tail"}, "bypass": {"share": 0.0086, "attributed": 3939, "bypassed": 34, "picked": 0, "ambiguous": 0}, "merges": {"total": 3834, "rate": 49.1538}, "reviewers": {"total": 97, "rate": 14.9241}, "scale": {"sloc": 218852, "core": 46, "age": 78}, "participation": {"share": 0.7679, "stratum": "high", "sampled": false}}
|
| 43 |
+
{"repository": "equinor/everest-models", "organization": "equinor", "review": {"score": 1.0, "low": 0.5101, "high": 1.0, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0056, "attributed": 179, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 124, "rate": 4.96}, "reviewers": {"total": 16, "rate": 3.12}, "scale": {"sloc": 12561, "core": 6, "age": 25}, "participation": {"share": 0.75, "stratum": "high", "sampled": false}}
|
| 44 |
+
{"repository": "fivetran/fivetran_connector_sdk", "organization": "fivetran", "review": {"score": 0.8895, "low": 0.6928, "high": 0.9091, "coverage": 0.966}, "stationarity": {"onset": 0.0762, "kind": "stationary tail"}, "bypass": {"share": 0.0404, "attributed": 380, "bypassed": 16, "picked": 0, "ambiguous": 0}, "merges": {"total": 382, "rate": 13.6429}, "reviewers": {"total": 28, "rate": 10.0435}, "scale": {"sloc": 41120, "core": 13, "age": 28}, "participation": {"share": 0.6702, "stratum": "high", "sampled": false}}
|
| 45 |
+
{"repository": "fox-it/dissect.target", "organization": "fox-it", "review": {"score": 0.8225, "low": 0.5675, "high": 0.863, "coverage": 0.991}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0118, "attributed": 1005, "bypassed": 12, "picked": 0, "ambiguous": 0}, "merges": {"total": 995, "rate": 21.6304}, "reviewers": {"total": 22, "rate": 5.2766}, "scale": {"sloc": 95802, "core": 8, "age": 46}, "participation": {"share": 0.6834, "stratum": "high", "sampled": false}}
|
| 46 |
+
{"repository": "fox-it/flow.record", "organization": "fox-it", "review": {"score": 0.9539, "low": 0.4365, "high": 0.9699, "coverage": 0.9868}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0195, "attributed": 151, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 152, "rate": 3.3043}, "reviewers": {"total": 10, "rate": 2.2381}, "scale": {"sloc": 11223, "core": 5, "age": 46}, "participation": {"share": 0.5724, "stratum": "high", "sampled": false}}
|
| 47 |
+
{"repository": "kedro-org/kedro-plugins", "organization": "kedro-org", "review": {"score": 0.8571, "low": 0.5491, "high": 0.8937, "coverage": 0.9952}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.013, "attributed": 608, "bypassed": 8, "picked": 0, "ambiguous": 0}, "merges": {"total": 619, "rate": 11.6792}, "reviewers": {"total": 48, "rate": 8.8491}, "scale": {"sloc": 32092, "core": 14, "age": 53}, "participation": {"share": 0.5089, "stratum": "high", "sampled": true}}
|
| 48 |
+
{"repository": "linz/topo-imagery", "organization": "linz", "review": {"score": 0.9539, "low": 0.4365, "high": 0.9699, "coverage": 0.9973}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0018, "attributed": 554, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 377, "rate": 8.0213}, "reviewers": {"total": 9, "rate": 3.5217}, "scale": {"sloc": 7168, "core": 5, "age": 47}, "participation": {"share": 0.3581, "stratum": "mid", "sampled": false}}
|
| 49 |
+
{"repository": "mbta/dmap-import", "organization": "mbta", "review": {"score": 0.8569, "low": 0.4344, "high": 0.9025, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0078, "attributed": 127, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 127, "rate": 4.0968}, "reviewers": {"total": 7, "rate": 1.8148}, "scale": {"sloc": 3819, "core": 3, "age": 31}, "participation": {"share": 0.2756, "stratum": "low", "sampled": false}}
|
| 50 |
+
{"repository": "microsoft/Olive", "organization": "microsoft", "review": {"score": 0.8034, "low": 0.6575, "high": 0.8327, "coverage": 0.9553}, "stationarity": {"onset": 0.0581, "kind": "stationary tail"}, "bypass": {"share": 0.045, "attributed": 1612, "bypassed": 76, "picked": 0, "ambiguous": 0}, "merges": {"total": 1678, "rate": 20.975}, "reviewers": {"total": 47, "rate": 6.381}, "scale": {"sloc": 74656, "core": 7, "age": 80}, "participation": {"share": 0.4595, "stratum": "mid", "sampled": true}}
|
| 51 |
+
{"repository": "mistralai/mistral-common", "organization": "mistralai", "review": {"score": 0.8002, "low": 0.481, "high": 0.8545, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0483, "attributed": 138, "bypassed": 7, "picked": 0, "ambiguous": 0}, "merges": {"total": 137, "rate": 5.48}, "reviewers": {"total": 14, "rate": 2.5833}, "scale": {"sloc": 14662, "core": 3, "age": 25}, "participation": {"share": 0.3066, "stratum": "low", "sampled": true}}
|
| 52 |
+
{"repository": "mongodb/django-mongodb-backend", "organization": "mongodb", "review": {"score": 0.8405, "low": 0.551, "high": 0.88, "coverage": 0.9816}, "stationarity": {"onset": 0.0701, "kind": "stationary tail"}, "bypass": {"share": 0.0452, "attributed": 570, "bypassed": 27, "picked": 0, "ambiguous": 0}, "merges": {"total": 381, "rate": 15.24}, "reviewers": {"total": 11, "rate": 4.28}, "scale": {"sloc": 18847, "core": 3, "age": 25}, "participation": {"share": 0.4436, "stratum": "mid", "sampled": false}}
|
| 53 |
+
{"repository": "mozilla-services/merino-py", "organization": "mozilla-services", "review": {"score": 0.8181, "low": 0.6347, "high": 0.8504, "coverage": 0.9992}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0069, "attributed": 1296, "bypassed": 9, "picked": 0, "ambiguous": 0}, "merges": {"total": 1236, "rate": 26.8696}, "reviewers": {"total": 35, "rate": 7.9574}, "scale": {"sloc": 115400, "core": 12, "age": 46}, "participation": {"share": 0.4741, "stratum": "mid", "sampled": false}}
|
| 54 |
+
{"repository": "netboxlabs/diode-netbox-plugin", "organization": "netboxlabs", "review": {"score": 1.0, "low": 0.5101, "high": 1.0, "coverage": 0.9928}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0118, "attributed": 84, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 139, "rate": 6.0435}, "reviewers": {"total": 9, "rate": 2.5714}, "scale": {"sloc": 18227, "core": 2, "age": 23}, "participation": {"share": 0.1871, "stratum": "low", "sampled": false}}
|
| 55 |
+
{"repository": "opensearch-project/opensearch-py-ml", "organization": "opensearch-project", "review": {"score": 0.8936, "low": 0.2077, "high": 0.9385, "coverage": 0.9843}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0094, "attributed": 210, "bypassed": 2, "picked": 1, "ambiguous": 0}, "merges": {"total": 191, "rate": 4.3409}, "reviewers": {"total": 24, "rate": 4.0833}, "scale": {"sloc": 32008, "core": 11, "age": 44}, "participation": {"share": 0.5183, "stratum": "high", "sampled": false}}
|
| 56 |
+
{"repository": "opentdf/tests", "organization": "opentdf", "review": {"score": 0.9342, "low": 0.552, "high": 0.953, "coverage": 0.9887}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0032, "attributed": 314, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 265, "rate": 5.0962}, "reviewers": {"total": 26, "rate": 3.6977}, "scale": {"sloc": 10482, "core": 5, "age": 52}, "participation": {"share": 0.1509, "stratum": "low", "sampled": false}}
|
| 57 |
+
{"repository": "optuna/optuna", "organization": "optuna", "review": {"score": 0.9129, "low": 0.7573, "high": 0.9254, "coverage": 0.9973}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0103, "attributed": 3745, "bypassed": 39, "picked": 0, "ambiguous": 0}, "merges": {"total": 3763, "rate": 37.63}, "reviewers": {"total": 49, "rate": 8.28}, "scale": {"sloc": 45507, "core": 10, "age": 100}, "participation": {"share": 0.7133, "stratum": "high", "sampled": false}}
|
| 58 |
+
{"repository": "oracle-samples/drgn-tools", "organization": "oracle-samples", "review": {"score": 0.9675, "low": 0.5291, "high": 0.9776, "coverage": 0.994}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0082, "attributed": 486, "bypassed": 4, "picked": 0, "ambiguous": 0}, "merges": {"total": 168, "rate": 5.4194}, "reviewers": {"total": 10, "rate": 2.2414}, "scale": {"sloc": 19759, "core": 3, "age": 31}, "participation": {"share": 0.4405, "stratum": "mid", "sampled": false}}
|
| 59 |
+
{"repository": "shimming-toolbox/shimming-toolbox", "organization": "shimming-toolbox", "review": {"score": 1.0, "low": 0.7009, "high": 1.0, "coverage": 0.9836}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0024, "attributed": 420, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 304, "rate": 4.4058}, "reviewers": {"total": 19, "rate": 2.7541}, "scale": {"sloc": 18672, "core": 5, "age": 69}, "participation": {"share": 0.4868, "stratum": "high", "sampled": false}}
|
| 60 |
+
{"repository": "sigstore/sigstore-python", "organization": "sigstore", "review": {"score": 0.9342, "low": 0.552, "high": 0.953, "coverage": 0.9906}, "stationarity": {"onset": 0.01, "kind": "stationary tail"}, "bypass": {"share": 0.0106, "attributed": 1208, "bypassed": 13, "picked": 0, "ambiguous": 0}, "merges": {"total": 532, "rate": 10.2308}, "reviewers": {"total": 24, "rate": 3.6875}, "scale": {"sloc": 7269, "core": 3, "age": 52}, "participation": {"share": 0.4906, "stratum": "high", "sampled": false}}
|
| 61 |
+
{"repository": "snowflakedb/snowflake-cli", "organization": "snowflakedb", "review": {"score": 0.8144, "low": 0.629, "high": 0.8477, "coverage": 0.9717}, "stationarity": {"onset": 0.0762, "kind": "stationary tail"}, "bypass": {"share": 0.0437, "attributed": 1946, "bypassed": 89, "picked": 0, "ambiguous": 0}, "merges": {"total": 1838, "rate": 40.8444}, "reviewers": {"total": 69, "rate": 7.9111}, "scale": {"sloc": 113232, "core": 12, "age": 45}, "participation": {"share": 0.4793, "stratum": "mid", "sampled": false}}
|
| 62 |
+
{"repository": "stytchauth/stytch-python", "organization": "stytchauth", "review": {"score": 0.8388, "low": 0.3968, "high": 0.8922, "coverage": 0.9917}, "stationarity": {"onset": 0.0862, "kind": "stationary tail"}, "bypass": {"share": 0.0405, "attributed": 237, "bypassed": 10, "picked": 0, "ambiguous": 0}, "merges": {"total": 241, "rate": 3.597}, "reviewers": {"total": 33, "rate": 3.2333}, "scale": {"sloc": 18927, "core": 13, "age": 67}, "participation": {"share": 0.1992, "stratum": "low", "sampled": false}}
|
| 63 |
+
{"repository": "syne-tune/syne-tune", "organization": "syne-tune", "review": {"score": 0.9165, "low": 0.5897, "high": 0.9381, "coverage": 0.9986}, "stationarity": {"onset": 0.016, "kind": "stationary tail"}, "bypass": {"share": 0.0233, "attributed": 712, "bypassed": 17, "picked": 0, "ambiguous": 0}, "merges": {"total": 697, "rate": 13.1509}, "reviewers": {"total": 11, "rate": 3.4043}, "scale": {"sloc": 19070, "core": 4, "age": 53}, "participation": {"share": 0.4778, "stratum": "mid", "sampled": false}}
|
| 64 |
+
{"repository": "temporalio/sdk-python", "organization": "temporalio", "review": {"score": 0.756, "low": 0.5749, "high": 0.801, "coverage": 1.0}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0045, "attributed": 668, "bypassed": 3, "picked": 0, "ambiguous": 0}, "merges": {"total": 658, "rate": 12.6538}, "reviewers": {"total": 30, "rate": 4.6275}, "scale": {"sloc": 157578, "core": 8, "age": 52}, "participation": {"share": 0.5334, "stratum": "high", "sampled": false}}
|
| 65 |
+
{"repository": "thunderbird/pulumi", "organization": "thunderbird", "review": {"score": 0.8936, "low": 0.2077, "high": 0.9385, "coverage": 0.9606}, "stationarity": {"onset": 0.0, "kind": "stationary"}, "bypass": {"share": 0.0081, "attributed": 122, "bypassed": 1, "picked": 0, "ambiguous": 0}, "merges": {"total": 127, "rate": 6.35}, "reviewers": {"total": 10, "rate": 2.5263}, "scale": {"sloc": 4350, "core": 1, "age": 20}, "participation": {"share": 0.2756, "stratum": "low", "sampled": false}}
|