mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-31 04:44:33 +01:00
comitting changes
This commit is contained in:
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
@@ -263,6 +263,7 @@ jobs:
|
||||
ref: ${{ github.event.pull_request.head.ref }}
|
||||
repository: ${{ github.event.pull_request.head.repo.full_name }}
|
||||
submodules: true
|
||||
token: ${{ env.GH_TOKEN }}
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
|
||||
@@ -32,6 +32,7 @@ def generate_combined_chart() -> None:
|
||||
info_data = {
|
||||
report_name: data.benchmark_start_time
|
||||
for report_name, data in reports_data.items()
|
||||
if report_name in categories
|
||||
}
|
||||
with open(Path(run_charts_folder) / "run_info.json", "w") as f:
|
||||
json.dump(info_data, f)
|
||||
|
||||
@@ -11,6 +11,7 @@ from matplotlib.colors import Normalize
|
||||
def save_combined_radar_chart(
|
||||
categories: dict[str, Any], save_path: str | Path
|
||||
) -> None:
|
||||
categories = {k: v for k, v in categories.items() if v}
|
||||
if not all(categories.values()):
|
||||
raise Exception("No data to plot")
|
||||
labels = np.array(
|
||||
|
||||
BIN
reports/combined_charts/run3/bar_chart.png
Normal file
BIN
reports/combined_charts/run3/bar_chart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 130 KiB |
BIN
reports/combined_charts/run3/radar_chart.png
Normal file
BIN
reports/combined_charts/run3/radar_chart.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 235 KiB |
1
reports/combined_charts/run3/run_info.json
Normal file
1
reports/combined_charts/run3/run_info.json
Normal file
@@ -0,0 +1 @@
|
||||
{"Auto-GPT": "2023-08-01-16:58", "BabyAGI": "2023-08-01-17:35", "beebot": "2023-08-01-17:31", "gpt-engineer": "2023-08-01-17:31", "mini-agi": "2023-08-01-16:57", "smol-developer": "2023-08-01-17:31"}
|
||||
Reference in New Issue
Block a user