hmnshudhmn24 commited on
Commit
89d78ce
Β·
verified Β·
1 Parent(s): 7a203cb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -55
README.md CHANGED
@@ -28,58 +28,3 @@ It combines **Temporal Convolutional Networks (TCN)**, **Bidirectional LSTMs**,
28
  - πŸ’Ύ **Lightweight, Scalable Architecture** β€” works on CPU/GPU and deploys easily to Hugging Face Spaces or Streamlit
29
 
30
  ---
31
-
32
- ## πŸ—οΈ Project Structure
33
-
34
- CHRONOGUARD/
35
- β”‚
36
- β”œβ”€β”€ data/
37
- β”‚ β”œβ”€β”€ synthetic_data.csv # demo dataset
38
- β”‚ β”œβ”€β”€ heatmap_scores.png # anomaly attention map
39
- β”‚ β”œβ”€β”€ heatmap_saliency.png # gradient-based saliency map
40
- β”‚
41
- β”œβ”€β”€ models/
42
- β”‚ β”œβ”€β”€ tcn_block.py # Temporal Convolutional Network module
43
- β”‚ β”œβ”€β”€ attention_block.py # Attention mechanism
44
- β”‚ β”œβ”€β”€ chronoguard_model.py # Full hybrid model definition
45
- β”‚
46
- β”œβ”€β”€ train_chronoguard.py # training script
47
- β”œβ”€β”€ inference_chronoguard.py # run inference & generate heatmaps
48
- β”œβ”€β”€ utils.py # data loaders, metrics, helpers
49
- β”œβ”€β”€ visualization.py # heatmap + explainability tools
50
- β”‚
51
- β”œβ”€β”€ notebooks/
52
- β”‚ └── ChronoGuard_Demo.ipynb # ready-to-run Colab notebook
53
- β”‚
54
- β”œβ”€β”€ requirements.txt
55
- β”œβ”€β”€ README.md
56
- β”œβ”€β”€ LICENSE
57
- └── config.yaml
58
-
59
-
60
- ---
61
-
62
- ## πŸ“Š Example Workflow
63
-
64
- 1. **Prepare Data**
65
- ```bash
66
- python utils.py --generate-synthetic
67
-
68
-
69
- 2. **Train the Model**
70
- ```bash
71
- python train_chronoguard.py --epochs 10 --batch_size 32
72
-
73
-
74
-
75
- 3. **Run Inference**
76
- ```bash
77
- python inference_chronoguard.py --input data/synthetic_data.csv
78
-
79
-
80
- 4. **Visualize Heatmaps**
81
- ```bash
82
- python visualization.py --input results/predictions.csv
83
-
84
-
85
- Outputs are saved under data/heatmap_scores.png and data/heatmap_saliency.png.
 
28
  - πŸ’Ύ **Lightweight, Scalable Architecture** β€” works on CPU/GPU and deploys easily to Hugging Face Spaces or Streamlit
29
 
30
  ---