mirror of
https://github.com/LearningCircuit/local-deep-research.git
synced 2026-06-16 03:51:07 +03:00
- Add benchmark CLI module with parameter optimization, comparison and profiling functionality - Add efficiency module for speed and resource monitoring - Add comparison module for evaluating different configurations - Add example scripts for benchmarks and optimization - Updated import references from 'benchmarking' to 'benchmarks' module
82 lines
2.4 KiB
Python
82 lines
2.4 KiB
Python
# example_optimization.py - Quick Demo Version
|
|
|
|
import os
|
|
import logging
|
|
import json
|
|
from datetime import datetime
|
|
|
|
# Import the optimization functionality
|
|
from local_deep_research.benchmarks.optimization import (
|
|
optimize_parameters,
|
|
optimize_for_speed,
|
|
optimize_for_quality
|
|
)
|
|
from local_deep_research.benchmarks.optimization.metrics import calculate_combined_score
|
|
|
|
# Configure logging to see progress
|
|
logging.basicConfig(
|
|
level=logging.INFO,
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s'
|
|
)
|
|
|
|
def main():
|
|
# Create timestamp for unique output directory
|
|
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
|
|
output_dir = f"optimization_results_{timestamp}"
|
|
os.makedirs(output_dir, exist_ok=True)
|
|
|
|
print(f"Starting quick optimization demo - results will be saved to {output_dir}")
|
|
|
|
# Demo with just a single simple optimization
|
|
print("\n=== Running quick demo optimization ===")
|
|
|
|
# Create a very simple parameter set to test
|
|
param_space = {
|
|
"iterations": {
|
|
"type": "int",
|
|
"low": 1,
|
|
"high": 2,
|
|
"step": 1,
|
|
},
|
|
"questions_per_iteration": {
|
|
"type": "int",
|
|
"low": 1,
|
|
"high": 2,
|
|
"step": 1,
|
|
},
|
|
"search_strategy": {
|
|
"type": "categorical",
|
|
"choices": ["rapid"], # Just use the fastest strategy
|
|
},
|
|
}
|
|
|
|
balanced_params, balanced_score = optimize_parameters(
|
|
query="SimpleQA quick demo", # Task descriptor
|
|
search_tool="searxng", # Using SearXNG
|
|
n_trials=2, # Just 2 trials for quick demo
|
|
output_dir=os.path.join(output_dir, "demo"),
|
|
param_space=param_space, # Limited parameter space
|
|
metric_weights={"quality": 0.5, "speed": 0.5}
|
|
)
|
|
|
|
print(f"Best parameters: {balanced_params}")
|
|
print(f"Best score: {balanced_score:.4f}")
|
|
|
|
# Save demo results to a summary file
|
|
summary = {
|
|
"timestamp": timestamp,
|
|
"demo": {
|
|
"parameters": balanced_params,
|
|
"score": balanced_score
|
|
}
|
|
}
|
|
|
|
with open(os.path.join(output_dir, "optimization_summary.json"), "w") as f:
|
|
json.dump(summary, f, indent=2)
|
|
|
|
print(f"\nDemo complete! Results saved to {output_dir}")
|
|
print(f"Recommended parameters: {balanced_params}")
|
|
|
|
if __name__ == "__main__":
|
|
main()
|