ppak10 commited on
Commit
0f6d5bb
·
1 Parent(s): 8472c2e

Adds samples.

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
CLAUDE.md ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CLAUDE.md
2
+
3
+ Context for continuing work on this dataset. Captures the design decisions and conventions worked out so far.
4
+
5
+ ## What this dataset is
6
+
7
+ `Inova-Mk1-ASTM` is the **ML-facing mechanical-test dataset**: one row per ASTM specimen (D638 tensile, D790 flex), with the mechanical response (curves + scalars) and the **printer state that produced the part** embedded inline as a snapshot. Domain-aligned with `Inova-Mk1-Database`, which is the canonical *graph* of printer entities.
8
+
9
+ Default to embedding snapshots over relying on cross-joins — consumers training models should be able to load this one config and have everything they need on each row.
10
+
11
+ ## Ecosystem
12
+
13
+ - **Upstream graph dataset**: `ppak10/Inova-Mk1-Database` — canonical print jobs, sessions, profiles, objects (see its CLAUDE.md). This dataset reads `Inova-Mk1-Database/data/jobs.jsonl` and `Inova-Mk1-Database/source/PrintProfiles/*.json` directly via a sibling-folder relative path.
14
+ - **Sibling domain datasets** (planned): `Inova-Mk1-Telemetry`.
15
+ - **Raw mechanical-test source**: TestWorks 4.1 (MTS Insight EM Tension / 3-pt Flex) — per-session folders dropped under `source/{YYYY_MM_DD}/`. LFS-tracked.
16
+
17
+ ## Architectural decisions
18
+
19
+ - **One row per specimen.** Granularity = a single TestRun. `specimen_id` (= `"{session_folder}/TSR{n}"`) is the path-style unique key; `sample_id` (= `"{batch_label}{seq}"`, e.g. `"C7"`) is the human-friendly handle.
20
+ - **One HF config per ASTM standard.** Tensile (D638) and flex (D790) live in `data/D638.jsonl` and `data/D790.jsonl` and load as separate configs (`load_dataset("ppak10/Inova-Mk1-ASTM", "D790")`). The schema is identical across configs; only the `astm.standard` value and the metric coverage differ.
21
+ - **Snapshot + reference for SLS rows.** Each SLS row carries both the FK ids (`job_id`, `print_profile_id`, `object_hash`) AND the full `print_profile_snapshot` JSON. The PrintProfile is the load-bearing feature set for ML; the job snapshot is *not* embedded (job_id is enough — consumers can join if they need the full job metadata).
22
+ - **Batch labels are a property of the print batch, not the test session.** `batch_label` (A/B/C/D/E) identifies the print run the specimen came from, so the same batch can appear in both configs (e.g. Batch C produced both tensile and flex specimens from the same 06/02 print). `sample_id` numbering is **per-config-per-batch**, so `C1` in D638 ≠ `C1` in D790 (different physical specimens, same batch).
23
+ - **PLA / PETG control rows live alongside SLS rows in the D638 config.** They carry the same mechanical-result fields with `material_class != "SLS"`, null Database FKs, and **null `sample_id`/`batch_label`** (they didn't come from an SLS print batch). They're benchtop comparison filament printed elsewhere and tested on the same Instron.
24
+ - **One script per source session folder, plus a shared `_lib.py`.** Each `scripts/specimens/{NN}_*.py` declares one `SESSION` dict (session_folder, xlsx_name, astm, batch_label, test_runs) and calls `_lib.process_session(SESSION)`. Reader/joiner/builder logic lives in `_lib.py`. Auto-inference of "test the day after print" is **not** safe — 2026-06-10 mixes 3 materials in one session and Batch C flex was tested 8 days after print, so the session→print-job mapping has to be declared per script.
25
+ - **One JSONL file per specimen.** Outputs land under `data/{standard}/{sample_id}.jsonl` (or `data/D638/{material_class}_TSR{n}.jsonl` for PLA/PETG controls without a sample_id). HF configs glob these via `path: data/D638/*.jsonl`. This keeps git diffs scoped to a single specimen when a row is regenerated and makes it easy to delete or replace individual rows.
26
+ - **Domain dependencies, not stdlib-only.** Unlike `Inova-Mk1-Database` (stdlib only), the ETL here needs `h5py` and `openpyxl`. They're declared in `pyproject.toml`. Python 3.13.
27
+
28
+ ## Directory layout
29
+
30
+ ```
31
+ source/
32
+ {YYYY_MM_DD}/ # one folder per test date
33
+ [sublabel/] # e.g. "Tensile Testing", "Batch C 3pt test"
34
+ *.tsproj # TestWorks project pointer
35
+ *.xlsx # human-readable export, one sheet per TSR
36
+ TST1.Test/
37
+ TestRuns/TSR{n}.TestRun/
38
+ Data/DaqTaskActivity1.h5 # raw DAQ scans (10 Hz): ext_m, load_N, time_s
39
+ AnalysisRuns/ANR1.AnalysisRun/
40
+ persistent.h5 # analyzed scalars + StressArray/StrainArray
41
+ TestRun.Traits # small XML — Name, Date, UniqueId
42
+ TestRun.1.Traits # ~20k lines, mostly base64 .NET ExecutionState — SKIP
43
+
44
+ scripts/specimens/
45
+ _lib.py # shared readers, Database lookup, build_row, process_session
46
+ 01_2026_05_26.py # Batch A tensile
47
+ 02_2026_06_01.py # Batch B tensile
48
+ 03_2026_06_03.py # Batch C tensile
49
+ 04_2026_06_10_tensile.py # Batch D tensile + PLA/PETG controls
50
+ 05_2026_06_10_batch_c.py # Batch C flex
51
+ 06_2026_06_10_batch_d.py # Batch D flex
52
+ 07_2026_06_10_batch_e.py # Batch E flex (no Database FK yet)
53
+
54
+ data/
55
+ D638/ # one JSONL per specimen (HF glob: data/D638/*.jsonl)
56
+ A1.jsonl ... D5.jsonl # SLS specimens, named by sample_id
57
+ PLA_TSR6.jsonl ... PETG_TSR11.jsonl # PLA/PETG controls (no sample_id)
58
+ D790/
59
+ C1.jsonl ... E10.jsonl # SLS specimens, named by sample_id
60
+ ```
61
+
62
+ ## File format notes — TestWorks 4.1 output
63
+
64
+ - **`Data/DaqTaskActivity1.h5`**: HDF5 with one `Session{16-digit}` group. `Scans` is `(N, 3) float64` of `[extension_m, load_N, time_s]` per the `Signals` dataset. `Triggers` records DAQ config (sample rate is in there as e.g. `Frequency=10`).
65
+ - **`AnalysisRuns/ANR1.AnalysisRun/persistent.h5`**: HDF5 with a single dataset `Values` of shape `(1,)` containing a giant compound record. All scalar metrics (Modulus, PeakStress, StressAtBreak, Yield, Slope, etc.) are `<f8` fields; **stress-strain curves are `object`-dtype fields** (`StressArray`, `StrainArray`, `_TimeArray`, etc.) that decode to variable-length numpy arrays.
66
+ - **xlsx export**: cols A-B = curve, row 1 = TestRun name, row 2 = units, cols D-I = `(DisplayName, Value, Unit, Reset Value, Original Value, Description)` per scalar metric. **Specimen `Width` and `Thickness` only live here** — not in any tidy field in the h5 files (the h5 only has the derived `Area` and `AdjGage`).
67
+ - **`TestRun.1.Traits`** and `Test.1.Traits` etc. are mostly opaque .NET binary serialization (base64-encoded inside an `<ExecutionState>` element). Don't try to parse — re-derive from the h5 / xlsx instead.
68
+
69
+ ## Row shape
70
+
71
+ See `README.md` for the full schema. Key envelope fields:
72
+ - `sample_id` = `"{batch_label}{seq}"` (e.g. `"A1"`, `"C7"`, `"E10"`); null for non-SLS controls.
73
+ - `batch_label` ∈ `{"A","B","C","D","E"}`; null for non-SLS controls.
74
+ - `specimen_id` = `"{session_folder}/TSR{n}"` — fully qualified unique key (use this if you need to disambiguate across configs).
75
+ - `material_class` ∈ `{"SLS", "PLA", "PETG", …}` — only `"SLS"` rows have populated Database FKs and `print_profile_snapshot`.
76
+ - `astm` = `{standard, type, year}` object — structured (not a flat string) so ISO equivalents can be added later without breaking schema.
77
+ - `curves` carries **both** analyzed (`stress_pa`, `strain`) and raw DAQ (`time_s`, `extension_m`, `load_n`) — lossless.
78
+
79
+ ### IMPORTANT — TestWorks analysis often fails to detect peak/break for tensile
80
+
81
+ Many D638 TSRs have `Peak = LongMax (9223372036854775807)` in persistent.h5, which leaves `PeakLoad`, `PeakStress`, `StressAtBreak`, `EnergyToBreak`, `StrnAtBreak` etc. all `NaN` despite a real break occurring. Our extract surfaces these as `null`. **The full stress-strain curve is still saved**, so consumers can re-derive peak/break with their own criteria. D790 flex rows have these populated more consistently. Don't filter rows based on null metrics; they may still be perfectly valid trials.
82
+
83
+ ### IMPORTANT — field-name divergence between tensile and flex persistent.h5
84
+
85
+ Same TestWorks framework, different schema. Notable renames you have to handle:
86
+ - `StrnAtPeak` (tensile) ↔ `StrainAtPeak` (flex)
87
+ - `StrnAtBreak` (tensile) ↔ `BreakStrain` (flex)
88
+ - `StrnAtYield` (tensile) ↔ `StrainAtYield` (flex)
89
+ - `Slope` (tensile, single) ↔ `Slope1`/`Slope2` (flex)
90
+ - `AdjGage` (tensile only — flex has no analogous field, gauge_length_mm is always null for D790)
91
+
92
+ `get_either(d, "tensile_name", "flex_name")` in `01_extract.py` handles this. If you add new scalars, check both files and use `get_either` rather than picking one name.
93
+
94
+ ## Current state
95
+
96
+ - `D638` config — 28 rows (22 SLS + 3 PLA + 3 PETG).
97
+ - `D790` config — 27 rows (17 SLS with full FKs + 10 Batch E SLS rows with null FKs pending Database backfill).
98
+ - Total: 55 specimens across 7 TestWorks sessions.
99
+
100
+ ## Running the extract
101
+
102
+ Each per-session script is independently runnable; output is per-specimen JSONL.
103
+
104
+ ```bash
105
+ # All sessions:
106
+ for f in scripts/specimens/0*.py; do uv run "$f"; done
107
+
108
+ # Just one session (e.g. when re-extracting after a fix):
109
+ uv run scripts/specimens/01_2026_05_26.py
110
+ ```
111
+
112
+ ## Adding a new session — recipe
113
+
114
+ 1. Drop the TestWorks session folder under `source/{YYYY_MM_DD}/` (or `source/{YYYY_MM_DD}/{label}/` for multiple sessions per day, as 2026_06_10 already does).
115
+ 2. `git lfs add` the `.h5`, `.Traits`, `.xlsx` files via the repo's `.gitattributes` (already configured).
116
+ 3. Add a new `scripts/specimens/{NN}_{slug}.py` (number it after the existing scripts). Use any of the existing scripts as a template — they're ~15 lines each. Declare:
117
+ - `session_folder`, `test_folder` (almost always `"TST1.Test"`), `xlsx_name`
118
+ - `astm` block (`standard` routes the output to `data/D638/` vs `data/D790/`)
119
+ - `batch_label` (single letter)
120
+ - `test_runs`: list of `(tsr_index, material_class, db_print_date | None)`. For SLS rows pick the source print job from `Inova-Mk1-Database/data/jobs.jsonl` by `print_date`. For non-SLS and SLS-without-Database-job, pass `None`.
121
+ 4. Run that one script → new files land in `data/{standard}/`.
122
+ 5. Update the README's "Test sessions covered" table.
123
+
124
+ ## Backfilling Batch E
125
+
126
+ When the print job behind Batch E lands in `Inova-Mk1-Database/data/jobs.jsonl`:
127
+ 1. In `scripts/specimens/07_2026_06_10_batch_e.py`, change `(i, "SLS", None)` to `(i, "SLS", "<print_date>")`.
128
+ 2. Re-run that one script. The 10 Batch E JSONLs in `data/D790/E*.jsonl` get FKs and `print_profile_snapshot` filled in. No schema change needed.
129
+
130
+ ## Scope note
131
+
132
+ Mirrors the `Inova-Mk1-Database` scope: ASTM-subset only. If the parent Database is later broadened to cover all SLS prints, the `MANIFEST` here doesn't need to change — only the specimens whose source print job is now in Database will get FKs filled in.
README.md CHANGED
@@ -1,3 +1,149 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ tags:
4
+ - astm
5
+ - mechanical-testing
6
+ - tensile
7
+ - flex
8
+ - sls
9
+ - 3d-printing
10
+ - additive-manufacturing
11
+ - inova-mk1
12
+ configs:
13
+ - config_name: D638
14
+ data_files:
15
+ - split: train
16
+ path: data/D638/*.jsonl
17
+ default: true
18
+ - config_name: D790
19
+ data_files:
20
+ - split: train
21
+ path: data/D790/*.jsonl
22
  ---
23
+
24
+ # Inova-Mk1-ASTM
25
+
26
+ ASTM mechanical-test specimens (D638 tensile, D790 flex) printed on the Inova Mk1 SLS printer and pulled on an MTS / TestWorks Instron. Each row is a single specimen with full geometry, scalar results, stress–strain + raw DAQ curves, and — for SLS rows — FK references and an embedded snapshot of the upstream print profile from [`ppak10/Inova-Mk1-Database`](https://huggingface.co/datasets/ppak10/Inova-Mk1-Database).
27
+
28
+ Rows are self-contained for ML use: the full `PrintProfile` JSON is inlined, so features (material/energy profile) and target (mechanical response) live on the same row.
29
+
30
+ ```python
31
+ from datasets import load_dataset
32
+ tensile = load_dataset("ppak10/Inova-Mk1-ASTM", "D638", split="train")
33
+ flex = load_dataset("ppak10/Inova-Mk1-ASTM", "D790", split="train")
34
+ ```
35
+
36
+ ## Composite stress–strain
37
+
38
+ Every specimen overlaid on one plot per standard. Colors are batch labels (A/B/C/D/E); dashed and dotted gray lines in D638 are PLA/PETG filament controls — they print at much higher stress and strain than the SLS PA12 specimens, which is why the SLS curves cluster near the origin.
39
+
40
+ | D638 (tensile) | D790 (three-point flex) |
41
+ |---|---|
42
+ | ![D638 composite](assets/D638_composite.png) | ![D790 composite](assets/D790_composite.png) |
43
+
44
+ Regenerate with `uv run scripts/plots/01_composite.py`.
45
+
46
+ ---
47
+
48
+ ## Configs
49
+
50
+ | Config | Description | Files |
51
+ |---|---|---|
52
+ | `D638` (default) | Tensile specimens (ASTM D638 Type I). 22 SLS + 3 PLA + 3 PETG = 28 rows. | `data/D638/*.jsonl` (one row per file) |
53
+ | `D790` | Three-point flex specimens (ASTM D790 Procedure A). 27 SLS rows (10 of them — Batch E — from a print job not yet in Database, so they carry null FKs). | `data/D790/*.jsonl` (one row per file) |
54
+
55
+ One JSONL file per specimen — SLS rows are named after their `sample_id` (e.g. `data/D638/A1.jsonl`, `data/D790/E10.jsonl`); PLA/PETG controls use `{material}_TSR{n}.jsonl` (e.g. `data/D638/PLA_TSR6.jsonl`). Both configs share the same row schema and are produced by the per-session scripts under `scripts/specimens/`.
56
+
57
+ Specimens are labeled with a `sample_id` of the form `{batch_letter}{seq}` (e.g. `A1`, `C7`), where the batch letter identifies the print batch they came from. The same `sample_id` may appear in both configs — `C1` in `D638` and `C1` in `D790` are **different physical specimens** that came from the same Batch C print.
58
+
59
+ ## Source Layout
60
+
61
+ ```
62
+ source/
63
+ 2026_05_26/ # one folder per test session
64
+ *.tsproj # TestWorks project pointer
65
+ *.xlsx # TestWorks Excel export, one sheet per specimen
66
+ TST1.Test/
67
+ TestRuns/
68
+ TSR{n}.TestRun/
69
+ Data/DaqTaskActivity1.h5 # raw DAQ scans (10 Hz)
70
+ AnalysisRuns/ANR1.AnalysisRun/
71
+ persistent.h5 # analyzed scalars + curves
72
+ ```
73
+
74
+ Test sessions covered:
75
+
76
+ | Session folder | Specimens | Standard | Batch | Source print job (Database) |
77
+ |---|---:|---|---|---|
78
+ | `2026_05_26/` | 5 | D638 | A | 2026-05-25 (d638_type1) |
79
+ | `2026_06_01/` | 5 | D638 | B | 2026-05-30 (d638_type1_engraved) |
80
+ | `2026_06_03/` | 7 | D638 | C | 2026-06-02 (d638_type1_engraved) |
81
+ | `2026_06_10/Tensile Testing/` | 5 SLS + 3 PLA + 3 PETG | D638 | D (SLS only) | SLS: 2026-06-07 (d638_type1_engraved) |
82
+ | `2026_06_10/Batch C 3pt test/` | 9 | D790 | C | 2026-06-02 (d790_flex_specimen) |
83
+ | `2026_06_10/Batch D 3pt test/` | 8 | D790 | D | 2026-06-07 (d790_flex_specimen) |
84
+ | `2026_06_10/Batch E 3pt test/` | 10 | D790 | E | print job **not yet in Database** — FKs null until backfilled |
85
+
86
+ TSR11 in `Batch E 3pt test/` exists on disk but has empty `Data/` (aborted run, no DAQ scans) and no corresponding xlsx sheet — it is excluded from the JSONL.
87
+
88
+ ## Row shape
89
+
90
+ ```json
91
+ {
92
+ "sample_id": "A1",
93
+ "batch_label": "A",
94
+ "specimen_id": "2026_05_26/TSR1",
95
+ "test_date": "2026-05-26",
96
+ "session_folder": "2026_05_26",
97
+ "test_run_name": "TSR1",
98
+ "specimen_index": 1,
99
+
100
+ "material_class": "SLS",
101
+ "astm": { "standard": "D638", "type": "Type I", "year": "2022" },
102
+ "test_end_reason": "Break Detected",
103
+
104
+ "geometry": {
105
+ "width_mm": 12.9, "thickness_mm": 3.2,
106
+ "area_mm2": 41.28, "gauge_length_mm": 103.0
107
+ },
108
+
109
+ "job_id": "ba17a5ba-a5f6-4d60-8832-b6c13a2dfa67",
110
+ "print_date": "2026-05-25",
111
+ "print_profile_id": "52715389-d580-4be9-9194-ed300bdf911b",
112
+ "object_hash": "E4251951376A82B4303394F832996A2E9883EAB0",
113
+ "session_id": null,
114
+
115
+ "print_profile_snapshot": { "...full PrintProfile JSON..." },
116
+
117
+ "metrics": {
118
+ "modulus_pa": 341090566.27,
119
+ "peak_load_n": null, "peak_stress_pa": null,
120
+ "strain_at_break": null, "stress_at_break_pa": null,
121
+ "energy_to_break_j": null, "yield_stress_pa": null,
122
+ "slope_n_per_m": 136701.15
123
+ },
124
+
125
+ "curves": {
126
+ "time_s": [/* N */],
127
+ "extension_m": [/* N */],
128
+ "load_n": [/* N */],
129
+ "strain": [/* N */],
130
+ "stress_pa": [/* N */]
131
+ },
132
+
133
+ "source_paths": {
134
+ "persistent_h5": "source/2026_05_26/TST1.Test/TestRuns/TSR1.TestRun/AnalysisRuns/ANR1.AnalysisRun/persistent.h5",
135
+ "daq_h5": "source/2026_05_26/TST1.Test/TestRuns/TSR1.TestRun/Data/DaqTaskActivity1.h5",
136
+ "xlsx": "source/2026_05_26/tensile_testing_5.26.xlsx",
137
+ "xlsx_sheet": "Sheet1"
138
+ }
139
+ }
140
+ ```
141
+
142
+ ## Notes on results
143
+
144
+ - `sample_id` is null for PLA/PETG control rows (they didn't come from an SLS print batch). Filter on `material_class == "SLS"` to get the rows that link back to Database.
145
+ - `batch_label == "E"` rows currently have `job_id`, `print_profile_id`, `object_hash`, and `print_profile_snapshot` all null — the source print job for Batch E is not yet in Database. The mechanical results are still valid.
146
+ - `metrics.peak_*` and `metrics.*_at_break` are often `null` in the D638 tensile rows because TestWorks did not detect a peak/break point on those runs. D790 flex rows have these fields more consistently populated. The `curves.stress_pa` / `curves.strain` arrays are populated regardless, so consumers can re-derive peak/break with their own criteria.
147
+ - `metrics.modulus_pa` matches the kN/mm² value in the TestWorks xlsx after unit conversion (e.g. tensile 0.341 kN/mm² → 3.41 × 10⁸ Pa). For D790, TestWorks computes the flexural modulus via the 3-point-bend formula directly; values may look unintuitive compared to the tensile modulus.
148
+ - DAQ scans are in SI units (m, N, s); stress is Pa and strain is dimensionless.
149
+ - For D790, `geometry.gauge_length_mm` is always null (gauge length is a tensile concept; flex uses support span which is not surfaced).
assets/D638_composite.png ADDED

Git LFS Details

  • SHA256: d9ac946074fdd0546710790f79729f47abe5678ee655630c368e26ee83046f3c
  • Pointer size: 131 Bytes
  • Size of remote file: 113 kB
assets/D790_composite.png ADDED

Git LFS Details

  • SHA256: c2521e1710b0dbd5eb33f4f8c41b0cde04203a20be92e542b49713f55f97fdea
  • Pointer size: 131 Bytes
  • Size of remote file: 407 kB
data/D638/A1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/A2.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/A3.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/A4.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/A5.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/B1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/B2.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/B3.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/B4.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/B5.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C2.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C3.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C4.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C5.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C6.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/C7.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/D1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/D2.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/D3.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/D4.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/D5.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/PETG_TSR10.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/PETG_TSR11.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/PETG_TSR9.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/PLA_TSR6.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/PLA_TSR7.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D638/PLA_TSR8.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C2.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C3.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C4.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C5.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C6.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C7.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C8.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/C9.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D1.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D2.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D3.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D4.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D5.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D6.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D7.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/D8.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
data/D790/E1.jsonl ADDED
The diff for this file is too large to render. See raw diff