Skip to content

Commit

Permalink
Fixing minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Federico-PizarroBejarano committed Jun 21, 2024
1 parent cd27a45 commit d709d84
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions experiments/crazyflie/plotting_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,22 +387,22 @@ def plot_log(algo, key, all_results):


if __name__ == '__main__':
REAL = False
REAL = True
CERTIFIED = True
algo_name = 'ppo'
all_results = load_all_models(algo_name)

# create_paper_plot(extract_magnitude_of_corrections)
# create_paper_plot(extract_percent_magnitude_of_corrections)
# create_paper_plot(extract_max_correction)
# create_paper_plot(extract_percent_max_correction)
# create_paper_plot(extract_rate_of_change)
# create_paper_plot(extract_number_of_corrections)
# create_paper_plot(extract_feasible_iterations)
# create_paper_plot(extract_reward)
# create_paper_plot(extract_rmse)
# create_paper_plot(extract_constraint_violations)
# create_paper_plot(extract_length)
create_paper_plot(extract_magnitude_of_corrections)
create_paper_plot(extract_percent_magnitude_of_corrections)
create_paper_plot(extract_max_correction)
create_paper_plot(extract_percent_max_correction)
create_paper_plot(extract_rate_of_change)
create_paper_plot(extract_number_of_corrections)
create_paper_plot(extract_feasible_iterations)
create_paper_plot(extract_reward)
create_paper_plot(extract_rmse)
create_paper_plot(extract_constraint_violations)
create_paper_plot(extract_length)

if not REAL:
plot_all_logs(algo_name)

0 comments on commit d709d84

Please sign in to comment.