small changes

This commit is contained in:
LukaszChrostowski 2023-12-28 09:34:37 +01:00
parent 70a76450d5
commit 8d01ed128d
3 changed files with 8 additions and 1 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -19,7 +19,14 @@ def LRegresion(x,y):
x = int(x[0:2])
y = int(y[0:2])
response = LogisticRegression_predict_proba(x, y, 13.67, 13, 3, 0, 1, 0)
response = LogisticRegression_predict_proba(position_x=x,
position_y=y,
angle = 13.67,
match_minute=13,
Number_Intervening_Opponents=3,
Number_Intervening_Teammates=0,
isFoot=1,
isHead=0)
print(x)
print(y)
print(response)