feat: remove evaluation infrastructure (moved to openadapt-evals)#25
Merged
feat: remove evaluation infrastructure (moved to openadapt-evals)#25
Conversation
All evaluation infrastructure (~13,000 lines) has been migrated to openadapt-evals (PR #29). This PR removes the now-redundant code from openadapt-ml, making it a pure ML package. Deleted files: - benchmarks/cli.py (8,503 lines - VM/pool CLI) - benchmarks/azure_vm.py (AzureVMManager) - benchmarks/pool.py (PoolManager) - benchmarks/vm_monitor.py, azure_ops_tracker.py, resource_tracker.py - benchmarks/azure.py, viewer.py, pool_viewer.py, trace_export.py - benchmarks/waa_deploy/ (Docker agent deployment) - tests/test_quota_auto_detection.py, test_demo_persistence.py - tests/benchmarks/test_api_agent.py, test_waa.py Updated: - benchmarks/__init__.py: Only exports ML agents (PolicyAgent, etc.) - pyproject.toml: Removed azure-ai-ml, azureml-core, azure-mgmt-* - CLAUDE.md: Removed CLI/VM/pool docs, added migration guide Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Update all remaining references to deleted benchmark modules across source code, scripts, and tests: - cloud/local.py: azure_ops_tracker, session_tracker, CLI subprocess calls - scripts/: p0/p1 validation scripts, screenshot generators, quota checker - training/benchmark_viewer.py: HTML template CLI references - experiments/waa_demo/runner.py: docstring and print references - deprecated/waa_deploy/__init__.py: import path All now point to openadapt_evals equivalents. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Feb 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
azure-ai-ml,azureml-core, andazure-mgmt-*from dependenciesDeleted files
benchmarks/cli.py(8,503 lines) - VM/pool management CLIbenchmarks/azure_vm.py- AzureVMManagerbenchmarks/pool.py- PoolManagerbenchmarks/vm_monitor.py,azure_ops_tracker.py,resource_tracker.pybenchmarks/azure.py,viewer.py,pool_viewer.py,trace_export.pybenchmarks/waa_deploy/- Docker agent deploymentKept in openadapt-ml
benchmarks/agent.py- PolicyAgent, APIBenchmarkAgent, UnifiedBaselineAgent (ML model wrappers)Migration Guide
openadapt_ml.benchmarks.cliopenadapt_evals.benchmarks.vm_cli(oroa-vmCLI)openadapt_ml.benchmarks.azure_vm.AzureVMManageropenadapt_evals.infrastructure.azure_vm.AzureVMManageropenadapt_ml.benchmarks.pool.PoolManageropenadapt_evals.infrastructure.pool.PoolManageropenadapt_ml.benchmarks.vm_monitor.VMMonitoropenadapt_evals.infrastructure.vm_monitor.VMMonitoropenadapt_ml.benchmarks.azure_ops_trackeropenadapt_evals.infrastructure.azure_ops_trackeropenadapt_ml.benchmarks.resource_trackeropenadapt_evals.infrastructure.resource_trackeropenadapt_ml.benchmarks.pool_vieweropenadapt_evals.benchmarks.pool_vieweropenadapt_ml.benchmarks.trace_exportopenadapt_evals.benchmarks.trace_exportopenadapt_ml.benchmarks.waa_deployopenadapt_evals.waa_deployCLI migration
python -m openadapt_ml.benchmarks.cli pool-createoa-vm pool-createpython -m openadapt_ml.benchmarks.cli pool-runoa-vm pool-runpython -m openadapt_ml.benchmarks.cli pool-statusoa-vm pool-statuspython -m openadapt_ml.benchmarks.cli pool-cleanupoa-vm pool-cleanuppython -m openadapt_ml.benchmarks.cli createoa-vm createpython -m openadapt_ml.benchmarks.cli statusoa-vm statuspython -m openadapt_ml.benchmarks.cli vm monitoroa-vm vm monitoroa-vm <command>What stays the same
Test plan
uv run pytest tests/ -v— 253 passed, 6 skippedfrom openadapt_ml.benchmarks import PolicyAgent, APIBenchmarkAgent, UnifiedBaselineAgentworksruff checkpasses🤖 Generated with Claude Code