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
286 stars 104 forks source link

Fixture prediction dates #33

Open betninja1 opened 10 months ago

betninja1 commented 10 months ago

Fixture prediction dates start from 01-09 while footystats have it 1-9 on dates, i think that is causing an issue with parsing error Also is it possible to add over under 2.5 goals in the future? thanks

KnightRider37 commented 9 months ago

You will have to change in gui-dialogs-model-fixtures the line days = [f'0{i}' if i < 10 else str(i) for i in range(1, 32)] with days = [str(i) for i in range(1, 32)] and then it will work.

Quasibzaar commented 8 months ago

I had the same problem, and changed the line as above, it worked! But, now, when I import the norwegian Eliteserien, a few of the fixtures have the wrong home, or away team. What could the problem be?