You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+23-2
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Anomaly Detection on Streamed Data 🌐
2
2
3
-
Welcome to the **Anomaly Detection on Streamed Data** project! This repository dives into the fascinating world of identifying anomalies in real-time data streams using Python.
3
+
Welcome to the **Efficient Data Stream Anomaly Detection** project! This repository dives into the fascinating world of identifying anomalies in real-time data streams using Python.
4
4
5
5
## What is Anomaly Detection?
6
6
@@ -33,4 +33,25 @@ Anomaly detection can be achieved through various methods, including:
33
33
34
34
In this project, I leverage Python's powerful libraries to implement these methods, showcasing effective ways to identify anomalies in streamed data.
35
35
36
-
## Project Features & Processes :
36
+
## Project Features :
37
+
38
+
## How to Run the code on your system:
39
+
40
+
## Theory and Formula:
41
+
42
+
also Include a concise explanation of your chosen algorithm and its effectiveness.
43
+
44
+
## Inner Structure of Code:
45
+
46
+
## Code Explanation:
47
+
48
+
-**Streamed Data Genarator**:
49
+
-**Anomaly Detector from streamed data**:
50
+
-**Visualization**:
51
+
52
+
#Anomaly: variable
53
+
#random.choices(population , weights ) choses population based on provided weight,
54
+
55
+
# The weights determine the likelihood of each item being chosen.
56
+
57
+
#anomaly = random.choices([0, random.uniform(10, 20)], [0.99, 0.01])[0] last 0 represent arrey index # population part Weight Part which is 99% normal & 1% anomaly
0 commit comments