Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/trace-ace-v121-eval-only.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: Trace Ace V121 Eval Only

on:
push:
pull_request:
branches: [agent/v121-cache-batch2]
paths:
- '.github/workflows/trace-ace-v121-eval-only.yml'
workflow_dispatch:

# Infrastructure-only rerun after allowing frozen string arrays in arrays.npz.
concurrency:
group: trace-ace-v121-eval-only
cancel-in-progress: false
Expand Down
1 change: 1 addition & 0 deletions competitions/trace_the_ace/V121_EVAL_TRIGGER.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Infrastructure-only trigger marker for the isolated frozen V121 evaluation PR.
4 changes: 3 additions & 1 deletion competitions/trace_the_ace/v121_staged_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ def load_embeddings(path: Path):
def evaluate(a):
d = Path(a.dir)
X75 = load_npz(d / 'X75.npz'); Xr = load_npz(d / 'Xr.npz')
z = np.load(d / 'arrays.npz', allow_pickle=False)
# Infrastructure-only serialization repair: these frozen arrays contain strings
# (objectives/support/sessions), which NumPy stores as object arrays.
z = np.load(d / 'arrays.npz', allow_pickle=True)
y=z['y']; objectives=z['objectives']; support=z['support']; sessions=z['sessions']
E_obj, E_sem = load_embeddings(Path(a.embeddings))
if len(y) != E_obj.shape[0] or len(y) != E_sem.shape[0]:
Expand Down
Loading