Update data: 5 units
Browse files- computing_math/particle_filter_nonlinear_tracking/base/input
- computing_math/particle_filter_nonlinear_tracking/base/software
- computing_math/pcap_enterprise_triage_01/base/input
- computing_math/pcap_enterprise_triage_01/base/software
- computing_math/ranking_node_feature_parity_recovery_instance_1/base/input
- tasks/computing_math/particle_filter_nonlinear_tracking/base/software/README.txt +3 -0
- tasks/computing_math/particle_filter_nonlinear_tracking/base/software/python.sh +12 -0
- tasks/computing_math/pcap_enterprise_triage_01/base/software/README.txt +5 -0
- tasks/computing_math/pcap_enterprise_triage_01/base/software/launch_wireshark.bat +2 -0
- tasks/computing_math/ranking_node_feature_parity_recovery_instance_1/base/input/workspace/assets/required.dat +0 -0
tasks/computing_math/particle_filter_nonlinear_tracking/base/software/README.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Use python.sh as the canonical solver entry point for this task.
|
| 2 |
+
It materializes a task-local uv environment from input/runtime_env/
|
| 3 |
+
and keeps the resolved environment under output/.agent_runtime_env by default.
|
tasks/computing_math/particle_filter_nonlinear_tracking/base/software/python.sh
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env bash
|
| 2 |
+
set -euo pipefail
|
| 3 |
+
|
| 4 |
+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
| 5 |
+
TASK_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
| 6 |
+
RUNTIME_ENV_DIR="${TASK_ROOT}/input/runtime_env"
|
| 7 |
+
RUNTIME_TARGET="${PARTICLE_FILTER_RUNTIME_DIR:-${TASK_ROOT}/output/.agent_runtime_env}"
|
| 8 |
+
|
| 9 |
+
mkdir -p "$(dirname "${RUNTIME_TARGET}")"
|
| 10 |
+
export UV_PROJECT_ENVIRONMENT="${RUNTIME_TARGET}"
|
| 11 |
+
|
| 12 |
+
exec uv run --python 3.10 --project "${RUNTIME_ENV_DIR}" --frozen python "$@"
|
tasks/computing_math/pcap_enterprise_triage_01/base/software/README.txt
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Use the staged Wireshark launcher for this task.
|
| 2 |
+
Canonical entry point: software\launch_wireshark.bat
|
| 3 |
+
Underlying GUI: C:\Program Files\Wireshark\Wireshark.exe
|
| 4 |
+
TShark CLI: C:\Program Files\Wireshark\tshark.exe
|
| 5 |
+
Agent-visible inputs live under the sibling input directory.
|
tasks/computing_math/pcap_enterprise_triage_01/base/software/launch_wireshark.bat
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@echo off
|
| 2 |
+
start "" "C:\Program Files\Wireshark\Wireshark.exe" %*
|
tasks/computing_math/ranking_node_feature_parity_recovery_instance_1/base/input/workspace/assets/required.dat
CHANGED
|
Binary files a/tasks/computing_math/ranking_node_feature_parity_recovery_instance_1/base/input/workspace/assets/required.dat and b/tasks/computing_math/ranking_node_feature_parity_recovery_instance_1/base/input/workspace/assets/required.dat differ
|
|
|