Update app.py
Browse files
app.py
CHANGED
|
@@ -113,7 +113,7 @@ def win_position(matchType, assists, boosts, damageDealt, DBNOs, headshotKills,
|
|
| 113 |
|
| 114 |
predictions = model.predict(df)
|
| 115 |
|
| 116 |
-
result = 'você ficou em ' + (100 - (int(predictions[0]*100))) + '° lugar'
|
| 117 |
|
| 118 |
return result
|
| 119 |
|
|
|
|
| 113 |
|
| 114 |
predictions = model.predict(df)
|
| 115 |
|
| 116 |
+
result = 'você ficou em ' + str((100 - (int(predictions[0]*100)))) + '° lugar. [' + str(predictions[0]) + ']'
|
| 117 |
|
| 118 |
return result
|
| 119 |
|