Skip to content

Commit

Permalink
class_ changed to class in features table
Browse files Browse the repository at this point in the history
  • Loading branch information
tedoaba committed Oct 25, 2024
1 parent a1a239f commit 891cf47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Features(db.Model):
sex = db.Column(db.String)
age = db.Column(db.Integer)
ip_address = db.Column(db.String)
class_ = db.Column(db.Integer) # Fraud class: 0 = non-fraud, 1 = fraud
class_ = db.Column('class', db.Integer) # Fraud class: 0 = non-fraud, 1 = fraud
lower_bound_ip_address = db.Column(db.BigInteger)
upper_bound_ip_address = db.Column(db.BigInteger)
country = db.Column(db.String)

0 comments on commit 891cf47

Please sign in to comment.