saritha5 commited on
Commit
9a6c50b
·
1 Parent(s): 26226a5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -8,10 +8,10 @@ warnings.simplefilter("ignore", UserWarning)
8
  MODEL = pickle.load(open('IF_model_anomaly.pkl','rb'))
9
 
10
  st.title("Retail Anomaly")
11
- st.write(""" Anomaly detection (or outlier detection) is the identification of rare items, events or observations which raise suspicions by
12
- differing significantly from the majority of the data. Typically, anomalous data can be connected to some kind of problem or rare event such
13
- as e.g. bank fraud, medical problems, structural defects, malfunctioning equipment etc. This connection makes it very interesting to be able
14
- to pick out which data points can be considered anomalies, as identifying these events are typically very interesting from a business perspective.
15
  """)
16
 
17
  def prediction(sales,model):
 
8
  MODEL = pickle.load(open('IF_model_anomaly.pkl','rb'))
9
 
10
  st.title("Retail Anomaly")
11
+ st.write(""" An anomaly (also known as an outlier) is when something happens that is outside of the norm, when it stands out or deviates from what is expected.
12
+ There are different kinds of anomalies in an e-commerce setting, they can be product anomaly, conversion anomaly or marketing anomaly.
13
+ The model used is Isolation Forest, which is built based on decision trees and is an unsupervised model.
14
+ Isolation forests can be used to detect anomaly in high dimensional and large datasets, with no labels.
15
  """)
16
 
17
  def prediction(sales,model):