Skip to content

Commit

Permalink
Fix default TS parameters in ra-sim example
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wojnar committed Apr 13, 2024
1 parent 753f879 commit 2d9e534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ra-sim/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def run(
print(params_str_template.format(args.n_wifi, args.simulation_time, args.initial_position, args.velocity))

start = perf_counter()
csv_results, mcs, rate, thr = run(ra_sim_args, ThompsonSampling, {}, args.seed)
csv_results, mcs, rate, thr = run(ra_sim_args, ThompsonSampling, {'decay': 1.0}, args.seed)
end = perf_counter()

print(results_str_template.format(end - start, thr, rate, mcs))
Expand Down

0 comments on commit 2d9e534

Please sign in to comment.