kochlisGit / ProphitBet-Soccer-Bets-Predictor

ProphitBet is a Machine Learning Soccer Bet prediction application. It analyzes the form of teams, computes match statistics and predicts the outcomes of a match using Advanced Machine Learning (ML) methods. The supported algorithms in this application are Neural Networks, Random Forests & Ensembl Models.
MIT License
281 stars 104 forks source link

latest games of season do not show up #36

Open Mark-papi opened 9 months ago

Mark-papi commented 9 months ago

Good Day!

I was wondering what should i change to the code to get the latest games of the Greek super league season, currently i get few of the new season games and only if i set last_n_games the value of 1.

If you kindly to help me out, thanks!!

btw same happens with english premier league new season games do not show up

update: something in the for loop of main.py

for i, url in enumerate(url_list):
            try:
                matches_df = pd.read_csv(url)
                matches_df['Season'] = league.year_start + i
                league_matches_dfs.append(matches_df)
            except:
KnightRider37 commented 9 months ago

Hi, Did you managed to solve the issue ? I'm having the same issue for most of the leagues.

Thanks