Spaces:
Runtime error
Runtime error
File size: 1,443 Bytes
bd4a798 60e6674 9b2e43d 1a846c2 9b2e43d 0c09923 9b2e43d a9c59e9 9b2e43d a9c59e9 9b2e43d caa704b 0dbdef3 1ab603d 0dbdef3 a20420c 0dbdef3 1ab603d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
import streamlit as st
import numpy as np
import pandas as pd
import pickle
from PIL import Image
image = Image.open('pic2.jpg')
st.image(image,caption = 'Network Data Anomaly',width =1000)
st.title("Network Data Anomaly")
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. There are different kinds of anomalies in an e-commerce setting,
they can be product anomaly, conversion anomaly or marketing anomaly.
The model used is Isolation Forest, which is built based on decision trees and is an unsupervised model.
Isolation forests can be used to detect anomaly in high dimensional and large datasets, with no labels.
""")
with open("./median.pickle", 'rb') as f:
MED = pickle.load(f)
with open("./mad.pickle", 'rb') as g:
MA = pickle.load(g)
def ZRscore_outlier(packet,med,ma):
z = (0.6745*(packet-med))/ (np.median(ma))
if np.abs(z) > 3:
return "Outlier"
else:
return "Not an Outlier"
packet = st.number_input("Packet Number",step=1)
st.header(ZRscore_outlier(packet,MED,MA))
st.write("""
For a detailed description please look through our Documentation
""")
url = 'https://huggingface.co/spaces/ThirdEyeData/Network_Data_Anomaly/blob/main/README.md'
st.markdown(f'''
<a href={url}><button style="background-color: #668F45;">Documentation</button></a>
''',
unsafe_allow_html=True) |