ppak10 Claude Fable 5 commited on
Commit
2cb9476
·
1 Parent(s): 1d8dd68

Update cross-repo references for Inova-Mk1-* -> Agentic-SLS-* rename

Browse files

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Q4zfbNDFb7rd8ovKrUSys2

Files changed (2) hide show
  1. CLAUDE.md +5 -3
  2. scripts/_lib.py +2 -2
CLAUDE.md CHANGED
@@ -95,8 +95,10 @@ sls4all/
95
  SLS4All.Compact/ # firmware (vendor; pinned)
96
  Inova-Defect-Detection-Model/# layer-wise defect detection model
97
  datasets/
98
- Agentic-SLS/ # legacy submodule, predates the HF dataset layout
99
  Inova-Mk1-Telemetry/ # THIS repo (update=none — never blanket --recurse-submodules; 566 GB)
 
 
 
100
  ```
101
 
102
  ### How the recorder runs
@@ -156,8 +158,8 @@ Assuming you're working on this machine (`/mnt/storage2`):
156
  |---|---|---|
157
  | This dataset | `/mnt/storage2/GitHub/Agentic-Additive-Manufacturing-Process-Optimization/datasets/Inova-Mk1-Telemetry/` | Where you are now. A submodule of the recorder repo. ETL reads the containing repo's exports; writes `data/ticks/`. |
158
  | Recorder repo | `/mnt/storage2/GitHub/Agentic-Additive-Manufacturing-Process-Optimization/` | Owns the live DB + export script and contains this dataset as a submodule. **The only repo this dataset depends on.** This ETL reads `data/exports/`. |
159
- | Sibling Database dataset | `/mnt/storage2/HuggingFace/Datasets/Inova-Mk1-Database/` | Informational only — *not* a dependency. Consumers can join `print_profile_name` against `source/PrintProfiles/*.json` themselves to recover the UUID; see "Joining back to Inova-Mk1-Database" in the README. |
160
- | Sibling ASTM dataset | `/mnt/storage2/HuggingFace/Datasets/Inova-Mk1-ASTM/` | Independent leaf; no direct dependency. |
161
 
162
  `scripts/_lib.py` resolves the recorder path relative to its own location: `ROOT` is the repo root (`_lib.py` → two `.parent`s up), and then:
163
  - **Recorder** (`AGENTIC_ROOT`): `ROOT.parent.parent` — two climbs from `ROOT` (`datasets/Inova-Mk1-Telemetry` → `datasets` → recorder root).
 
95
  SLS4All.Compact/ # firmware (vendor; pinned)
96
  Inova-Defect-Detection-Model/# layer-wise defect detection model
97
  datasets/
 
98
  Inova-Mk1-Telemetry/ # THIS repo (update=none — never blanket --recurse-submodules; 566 GB)
99
+ Inova-Mk1-Database/ # canonical printer entities (update=none)
100
+ Inova-Mk1-ASTM/ # mechanical-test specimens (update=none)
101
+ Inova-Mk1-Conversations/ # agent transcripts (update=none)
102
  ```
103
 
104
  ### How the recorder runs
 
158
  |---|---|---|
159
  | This dataset | `/mnt/storage2/GitHub/Agentic-Additive-Manufacturing-Process-Optimization/datasets/Inova-Mk1-Telemetry/` | Where you are now. A submodule of the recorder repo. ETL reads the containing repo's exports; writes `data/ticks/`. |
160
  | Recorder repo | `/mnt/storage2/GitHub/Agentic-Additive-Manufacturing-Process-Optimization/` | Owns the live DB + export script and contains this dataset as a submodule. **The only repo this dataset depends on.** This ETL reads `data/exports/`. |
161
+ | Database dataset | `/mnt/storage2/GitHub/Agentic-Additive-Manufacturing-Process-Optimization/datasets/Inova-Mk1-Database/` | Fellow submodule. Informational only — *not* a dependency. Consumers can join `print_profile_name` against `source/PrintProfiles/*.json` themselves to recover the UUID; see "Joining back to Inova-Mk1-Database" in the README. |
162
+ | ASTM dataset | `/mnt/storage2/GitHub/Agentic-Additive-Manufacturing-Process-Optimization/datasets/Inova-Mk1-ASTM/` | Fellow submodule. Independent leaf; no direct dependency. |
163
 
164
  `scripts/_lib.py` resolves the recorder path relative to its own location: `ROOT` is the repo root (`_lib.py` → two `.parent`s up), and then:
165
  - **Recorder** (`AGENTIC_ROOT`): `ROOT.parent.parent` — two climbs from `ROOT` (`datasets/Inova-Mk1-Telemetry` → `datasets` → recorder root).
scripts/_lib.py CHANGED
@@ -1,7 +1,7 @@
1
  """Shared paths and helpers for the extract scripts.
2
 
3
  The raw data lives in the recorder repo, which contains this dataset as a
4
- submodule (`datasets/Inova-Mk1-Telemetry`). This dataset has no local source
5
  files; every extract script reads from `EXPORTS_DIR` and writes to `DATA_DIR`.
6
  """
7
  import json
@@ -13,7 +13,7 @@ DATA_DIR = ROOT / "data"
13
  # Recorder-repo location. The Telemetry dataset has no local source/ tree;
14
  # its raw inputs are the flat exports written by
15
  # `Agentic-Additive-Manufacturing-Process-Optimization/scripts/export.py`.
16
- # This repo is a submodule at `datasets/Inova-Mk1-Telemetry` inside the
17
  # recorder repo → two climbs from ROOT reach the recorder root.
18
  AGENTIC_ROOT = ROOT.parent.parent
19
  EXPORTS_DIR = AGENTIC_ROOT / "data" / "exports"
 
1
  """Shared paths and helpers for the extract scripts.
2
 
3
  The raw data lives in the recorder repo, which contains this dataset as a
4
+ submodule (`datasets/Agentic-SLS-Telemetry`). This dataset has no local source
5
  files; every extract script reads from `EXPORTS_DIR` and writes to `DATA_DIR`.
6
  """
7
  import json
 
13
  # Recorder-repo location. The Telemetry dataset has no local source/ tree;
14
  # its raw inputs are the flat exports written by
15
  # `Agentic-Additive-Manufacturing-Process-Optimization/scripts/export.py`.
16
+ # This repo is a submodule at `datasets/Agentic-SLS-Telemetry` inside the
17
  # recorder repo → two climbs from ROOT reach the recorder root.
18
  AGENTIC_ROOT = ROOT.parent.parent
19
  EXPORTS_DIR = AGENTIC_ROOT / "data" / "exports"