Fix unfix.

This commit is contained in:
Casper 2019-04-07 12:10:47 +02:00
parent efe52ca136
commit 6e45a2652d
No known key found for this signature in database
GPG Key ID: 289CA03790535054
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ def dota2_players(context: Context) -> Prediction:
# Find the historic data closest matching the current number of players. Lol yolo # Find the historic data closest matching the current number of players. Lol yolo
current_players = get_dota2_players() current_players = get_dota2_players()
with Path(__file__).parent.joinpath("dotaplayers 2019-04-06 13:43:33.074496.csv").open() as csv: with Path(__file__).parent.joinpath("dotaplayers-2019-04-06-13-43-33.074496.csv").open() as csv:
best_players, best_dt = min(csv, key=lambda l: abs(int(l.rstrip().split(", ")[0]) - current_players)).rstrip().split(", ") best_players, best_dt = min(csv, key=lambda l: abs(int(l.rstrip().split(", ")[0]) - current_players)).rstrip().split(", ")
best_match_players = int(best_players) best_match_players = int(best_players)
best_match_datetime = datetime.strptime(best_dt, "%Y-%m-%d %H:%M:%S.%f") best_match_datetime = datetime.strptime(best_dt, "%Y-%m-%d %H:%M:%S.%f")

View File

@ -48,6 +48,7 @@ def perform_svm_pred(context: Context) -> Prediction:
An SVM trained on two data points, which is capable of guessing 0.5 no matter what. An SVM trained on two data points, which is capable of guessing 0.5 no matter what.
""" """
p = Prediction() p = Prediction()
p.weight = 0.5
data = requests.get('https://portal.opendata.dk/api/3/action/datastore_search?resource_id=2a82a145-0195-4081-a13c-b0e587e9b89c') data = requests.get('https://portal.opendata.dk/api/3/action/datastore_search?resource_id=2a82a145-0195-4081-a13c-b0e587e9b89c')
records = data.json()['result']['records'] records = data.json()['result']['records']