Vivekan commited on
Commit
ab7824d
1 Parent(s): 908d75e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  def classify(num):
2
  if num<1:
3
  return 'negative'
 
1
+ from sklearn.linear_model import LogisticRegression
2
+ LR=LogisticRegression()
3
+
4
  def classify(num):
5
  if num<1:
6
  return 'negative'