This commit is contained in:
Casper 2019-04-07 05:02:02 +02:00
parent 44d9d68fe4
commit 6226666191
No known key found for this signature in database
GPG Key ID: 289CA03790535054
1 changed files with 7 additions and 1 deletions

View File

@ -76,5 +76,11 @@ def tv2newsStrat(context : Context) -> Prediction:
p.weight = 0.7
print(avg_timestamp)
p.probability = 0.75 if avg_timestamp > 40 else 0.25
p.reasons.append('There were ' + ('few' if avg_timestamp > 40 else 'many') + ' recent articles on TV2 News')
few_or_many = 'few' if avg_timestamp > 40 else 'many'
p.reasons.append('There were ' + few_or_many + ' recent articles on TV2 News')
if few_or_many == "few":
p.reasons.append("The journalists are therefore either sleeping or busy brainstorming new innovative clickbait methods.")
else:
p.reasons.append("The journalists must be busy at work then.")
p.reasons.append("And since journalists only work during the day, it must be daytime.")
return p