From bd84405ebbeda1dbdc80fd3a573e3e40bc1f9938 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 1 Feb 2023 11:40:50 +0100 Subject: [PATCH] Change main.py --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index ef3f062..af31dbd 100644 --- a/main.py +++ b/main.py @@ -15,10 +15,10 @@ FS = create_fuzzy_system() for x in range(50): if x < 20: - res = get_prediction(teams_a[x], teams_b[x], team_a_games[x], team_b_games[x], "lcs_summer_2020", FS, team_a_win[x], verbose=True) + res = get_prediction(teams_a[x], teams_b[x], team_a_games[x], team_b_games[x], "lcs_summer_2020", FS, verbose=True) elif x < 35: - res = get_prediction(teams_a[x], teams_b[x], team_a_games[x], team_b_games[x], "lec_summer_2021", FS, team_a_win[x], verbose=True) + res = get_prediction(teams_a[x], teams_b[x], team_a_games[x], team_b_games[x], "lec_summer_2021", FS, verbose=True) else: - res = get_prediction(teams_a[x], teams_b[x], team_a_games[x], team_b_games[x], "ultraliga_summer_2022", FS, team_a_win[x], verbose=True) + res = get_prediction(teams_a[x], teams_b[x], team_a_games[x], team_b_games[x], "ultraliga_summer_2022", FS, verbose=True) print(f"Prediction: {res}")