File size: 962 Bytes
1556404 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #!/bin/bash
# 一键分析和绘图脚本
echo "=================================="
echo "🔍 Circle Packing Results Analyzer"
echo "=================================="
echo ""
# 进入项目根目录
cd "$(dirname "$0")/.."
echo "📊 Step 1: Analyzing results..."
echo ""
uv run python my/analyze_latest_results.py
echo ""
echo "=================================="
echo "🎨 Step 2: Creating plots..."
echo "=================================="
echo ""
uv run python my/plot_latest_results.py
echo ""
echo "=================================="
echo "✅ Analysis Complete!"
echo "=================================="
echo ""
echo "📁 Results:"
echo " • Report: my/LATEST_EXPERIMENT_REPORT.md"
echo " • JSON: my/latest_comparison_results.json"
echo " • Plots: my/plots_latest/"
echo ""
echo "🖼️ View plots:"
echo " open my/plots_latest/*.png"
echo ""
echo "📖 Read report:"
echo " cat my/LATEST_EXPERIMENT_REPORT.md"
echo ""
|