Train-time-delay-prediction-using-machine-learning
Train-time-delay-prediction-using-machine-learning copied to clipboard
Train Time Delay Prediction using machine learning
Results
1
Train-time-delay-prediction-using-machine-learning issues
Sort by
recently updated
recently updated
newest added
Recurrent Neural Networks, you say? ```python3 fate=self.response['date'] avg_delays[self.response['station']][self.response['train']] s=fate[0]*8+fate[1]+fate[2] l=[7,1,5,3,6,8,2,9,4,0] s=sum([int(c) for c in str(s)]) s=(s%10+s//10)%10 self.statusL.configure(text=f'''The expected delay is : {int(avg_delays[self.response['station']][self.response['train']])+l[s]} minutes''') ``` Why so sophisticated, and not just...