ErickMVdO commited on
Commit
1a4baf2
1 Parent(s): becf8a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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